Subversion Repositories XServices

Rev

Rev 30 | Rev 33 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30 Rev 31
Line 158... Line 158...
158
	
158
	
159
	public boolean isVisible() {
159
	public boolean isVisible() {
160
		return this.visible;
160
		return this.visible;
Line 161... Line 161...
161
	}
161
	}
162
	
162
	
163
	public static SBMTicketAttribute getSBMAttributeByName(String sbm_fieldname) {
163
	public static SBMTicketAttribute getSBMAttributeBySBMName(String sbm_fieldname) {
164
		for (SBMTicketAttribute attribute : values()) {
164
		for (SBMTicketAttribute attribute : values()) {
165
			if (sbm_fieldname.equals(attribute.getSBMName())) {
165
			if (sbm_fieldname.equals(attribute.getSBMName())) {
166
				return attribute;
166
				return attribute;