/**
* Copyright 1996-2014 FoxBPM ORG.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author ych
*/
package org.foxbpm.model.style;
public class Style {
private String elementType;
private String foreGround;
private String backGround;
private String textColor;
private String mulitSelectedColor;
private String selectedColor;
private String font;
public String getElementType() {
return elementType;
}
public void setElementType(String elementType) {
this.elementType = elementType;
}
public String getForeGround() {
return foreGround;
}
public void setForeGround(String foreGround) {
this.foreGround = foreGround;
}
public String getBackGround() {
return backGround;
}
public void setBackGround(String backGround) {
this.backGround = backGround;
}
public String getTextColor() {
return textColor;
}
public void setTextColor(String textColor) {
this.textColor = textColor;
}
public String getMulitSelectedColor() {
return mulitSelectedColor;
}
public void setMulitSelectedColor(String mulitSelectedColor) {
this.mulitSelectedColor = mulitSelectedColor;
}
public String getSelectedColor() {
return selectedColor;
}
public void setSelectedColor(String selectedColor) {
this.selectedColor = selectedColor;
}
public String getFont() {
return font;
}
public void setFont(String font) {
this.font = font;
}
}