1 22 23 package org.jboss.profileservice.spi; 24 25 29 30 public abstract class OpenType<T> 31 { 32 private String className; 33 private String typeName; 34 private String description; 35 protected OpenType(String className, String typeName, String description) 36 { 37 this.className = className; 38 this.typeName = typeName; 39 this.description = description; 40 } 41 42 public String getClassName() 43 { 44 return className; 45 } 46 public String getTypeName() 47 { 48 return typeName; 49 } 50 public String getDescription() 51 { 52 return description; 53 } 54 55 public abstract boolean isValue(Object value); 56 } 57 | Popular Tags |