/*
* Created on 2005-7-20
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.ug.sztz.domain.sztz;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class Style {
private String name;
private int style;
/**
* @return Returns the name.
*/
public String getName() {
return name;
}
/**
* @param name The name to set.
*/
public void setName(String name) {
this.name = name;
}
/**
* @return Returns the style.
*/
public int getStyle() {
return style;
}
/**
* @param style The style to set.
*/
public void setStyle(int style) {
this.style = style;
}
}