KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > modfact > jmi > repository > javax > jmi > model > TagClassImpl


1 package org.objectweb.modfact.jmi.repository.javax.jmi.model;
2
3 import org.objectweb.modfact.jmi.reflect.*;
4 public class TagClassImpl extends org.objectweb.modfact.jmi.reflect.RefClassImpl implements javax.jmi.model.TagClass {
5     public javax.jmi.model.Tag createTag() throws javax.jmi.reflect.JmiException {
6          return (javax.jmi.model.Tag) refCreateInstance(null);
7     }
8
9     public javax.jmi.model.Tag createTag(String JavaDoc name , String JavaDoc annotation , String JavaDoc tagId , java.util.List JavaDoc values) throws javax.jmi.reflect.JmiException {
10
11         java.util.List JavaDoc list = new java.util.Vector JavaDoc();
12          list.add(name);
13          list.add(annotation);
14          list.add(tagId);
15          list.add(values);
16          return (javax.jmi.model.Tag) refCreateInstance(list);
17     }
18
19     public RefObjectImpl newObject() {
20         return new org.objectweb.modfact.jmi.repository.javax.jmi.model.TagImpl();
21     }
22     public Class JavaDoc newEnum(String JavaDoc n) {
23          throw new RuntimeException JavaDoc("invalide type");
24     }
25     public RefStructImpl newStruct(String JavaDoc n) {
26 throw new RuntimeException JavaDoc("invalide type");
27     }
28 }//end of interface
29
Popular Tags