Package org.jboss.kernel.plugins.annotations

Source Code of org.jboss.kernel.plugins.annotations.ThisValueAnnotationPlugin

/*    */ package org.jboss.kernel.plugins.annotations;
/*    */
/*    */ import org.jboss.beans.metadata.api.annotations.ThisValue;
/*    */ import org.jboss.beans.metadata.plugins.ThisValueMetaData;
/*    */ import org.jboss.beans.metadata.spi.ValueMetaData;
/*    */
/*    */ public class ThisValueAnnotationPlugin extends PropertyAnnotationPlugin<ThisValue>
/*    */ {
/* 35 */   static ThisValueAnnotationPlugin INSTANCE = new ThisValueAnnotationPlugin();
/*    */
/*    */   public ThisValueAnnotationPlugin()
/*    */   {
/* 39 */     super(ThisValue.class);
/*    */   }
/*    */
/*    */   public ValueMetaData createValueMetaData(ThisValue annotation)
/*    */   {
/* 44 */     return new ThisValueMetaData();
/*    */   }
/*    */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     org.jboss.kernel.plugins.annotations.ThisValueAnnotationPlugin
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.kernel.plugins.annotations.ThisValueAnnotationPlugin

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.