blob: 886a8d2cd9b6f468c2437ec62f261b1aec304ba8 [file] [log] [blame]
package org.eclipse.epp.installer.core;
/**
* <p>
* Copyright (c) 2006, Instantiations, Inc.<br>
* All Rights Reserved
*/
public class InstallType {
String name = "name";
String title = "title";
String description = "description";
Object image;
/**
* Constructor for IntallTypeEntity.
* @param name String
* @param title String
* @param description String
*/
public InstallType(String name, String title, String description) {
this.name = name;
this.title = title;
this.description = description;
}
public InstallType(String name, String title, String description, Object image) {
this.name = name;
this.title = title;
this.description = description;
this.image = image;
}
/**
* Method getName.
* @return String
*/
public String getName() {
return name;
}
/**
* Method getTitle.
* @return String
*/
public String getTitle() {
return title;
}
/**
* Method getDescription.
* @return String
*/
public String getDescription() {
return description;
}
public Object getImage() {
return image;
}
};