ORCentral

src/eu/coform/Software.java

Go to the documentation of this file.
00001 package eu.coform;
00002 
00006 public class Software {
00007    private int      softwareID;
00008    private String   name;
00009    private String   uri;
00010    private String   description;
00011 
00012    public Software() {
00013    }
00014 
00015    public int getSoftwareID() {
00016       return softwareID;
00017    }
00018 
00019    public void setSoftwareID(int softwareID) {
00020       this.softwareID = softwareID;
00021    }
00022 
00023    public String getName() {
00024       return name;
00025    }
00026 
00027    public void setName(String name) {
00028       this.name = name;
00029    }
00030 
00031    public String getUri() {
00032       return uri;
00033    }
00034 
00035    public void setUri(String uri) {
00036       this.uri = uri;
00037    }
00038 
00039    public String getDescription() {
00040       return description;
00041    }
00042 
00043    public void setDescription(String description) {
00044       this.description = description;
00045    }
00046 }
 All Classes Namespaces Files Functions Variables Enumerations