You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/src/com/platform/form/ScriptForm.java

39 lines
596 B

package com.platform.form;
import com.platform.entities.MyFilesEntity;
public class ScriptForm {
private String content;
private MyFilesEntity item;
/**
* @return the content
*/
public String getContent() {
return content;
}
/**
* @param content the content to set
*/
public void setContent(String content) {
this.content = content;
}
/**
* @return the item
*/
public MyFilesEntity getItem() {
return item;
}
/**
* @param item the item to set
*/
public void setItem(MyFilesEntity item) {
this.item = item;
}
}