Скачиваний:
64
Добавлен:
15.06.2014
Размер:
1.32 Кб
Скачать
package by;

//this class returns elements names for our xml structure
public class KeeperNames
{
String name = "name";
String price = "price";
String arrivaldate = "arrivaldate";
String maker = "maker";
String weight = "weight";
String bruttoweight = "bruttoweight";
String nettoweight = "nettoweight";
String type = "type";
String restrictiononage = "restrictiononage";
String department = "department";
String shelflife = "shelflife";
String number = "number";

public KeeperNames()
{

}

public String getNameName()
{
return name;
}

public String getPriceName()
{
return price;
}

public String getArrivalDateName()
{
return arrivaldate;
}

public String getMakerName()
{
return maker;
}

public String getWeightName()
{
return weight;
}

public String getBruttoWeightName()
{
return bruttoweight;
}

public String getNettoWeightName()
{
return nettoweight;
}

public String getTypeName()
{
return type;
}

public String getRestrictionOnAgeName()
{
return restrictiononage;
}

public String getDepartmentName()
{
return department;
}

public String getShelfLifeName()
{
return shelflife;
}

public String getNumberName()
{
return number;
}
}
Соседние файлы в папке by