14 lines
235 B
Java
14 lines
235 B
Java
package company.vesminetelesa;
|
|
|
|
public class Vesmirne_telesa {
|
|
public String type;
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
protected void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
}
|