1 26 27 package org.objectweb.openccm.ast.lib; 28 29 30 import org.objectweb.openccm.ast.api.DeclarationKind; 31 32 54 55 public class StorageHomeFactoryDeclImpl 56 extends DeclarationWithMemberListImpl 57 implements org.objectweb.openccm.ast.api.StorageHomeFactoryDecl 58 { 59 65 71 77 protected 78 StorageHomeFactoryDeclImpl(Repository rep, 79 ScopeImpl parent) 80 { 81 super(rep, parent); 83 } 84 85 91 97 102 protected org.omg.CORBA.Contained 103 getContained() 104 { 105 return null; 106 } 107 108 113 public org.objectweb.openccm.ast.api.DeclarationCategory 114 getCategory() 115 { 116 return org.objectweb.openccm.ast.api.DeclarationCategory.dc_psdl; 117 } 118 119 125 131 138 public long 139 getDeclKind() 140 { 141 return DeclarationKind.dk_storage_home_factory; 142 } 143 144 150 156 } 157 | Popular Tags |