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 StorageHomeKeyDeclImpl 56 extends DeclarationWithMemberListImpl 57 implements org.objectweb.openccm.ast.api.StorageHomeKeyDecl 58 { 59 65 71 77 protected 78 StorageHomeKeyDeclImpl(Repository rep, 79 ScopeImpl parent) 80 { 81 super(rep, parent); 83 } 84 85 90 public org.objectweb.openccm.ast.api.DeclarationCategory 91 getCategory() 92 { 93 return org.objectweb.openccm.ast.api.DeclarationCategory.dc_psdl; 94 } 95 96 102 108 113 protected org.omg.CORBA.Contained 114 getContained() 115 { 116 return null; 117 } 118 119 125 131 138 public long 139 getDeclKind() 140 { 141 return DeclarationKind.dk_storage_home_key; 142 } 143 144 150 156 } 157 | Popular Tags |