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.
35 lines
920 B
35 lines
920 B
package com.fr.design.designer.beans; |
|
|
|
import java.io.Serializable; |
|
|
|
public class PredefinedLayout implements Serializable { |
|
private static final String IMAGE_PATH = "/com/fr/design/form/layouts/images/"; |
|
private static final String TEMPLATE_PATH = "/com/fr/design/form/layouts/templates/"; |
|
private String template; |
|
private String realStyle; |
|
private String simpleStyle; |
|
|
|
public String getTemplate() { |
|
return TEMPLATE_PATH + template; |
|
} |
|
|
|
public void setTemplate(String template) { |
|
this.template = template; |
|
} |
|
|
|
public String getRealStyle() { |
|
return IMAGE_PATH + realStyle; |
|
} |
|
|
|
public void setRealStyle(String realStyle) { |
|
this.realStyle = realStyle; |
|
} |
|
|
|
public String getSimpleStyle() { |
|
return IMAGE_PATH + simpleStyle; |
|
} |
|
|
|
public void setSimpleStyle(String simpleStyle) { |
|
this.simpleStyle = simpleStyle; |
|
} |
|
}
|
|
|