KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mockobjects > atg > MockRepositoryItemDescriptor


1 package com.mockobjects.atg;
2 import atg.repository.*;/**
3  * Creation date: (06/04/2001 09:56:36)
4  * @author:
5  */

6 public class MockRepositoryItemDescriptor implements RepositoryItemDescriptor {
7     private MockRepositoryView repositoryView;
8
9         /**
10      * MockRepositoryItemDescriptor constructor comment.
11      */

12     public MockRepositoryItemDescriptor() {
13         super();
14     }
15
16     /**
17      * addPropertyDescriptor method comment.
18      */

19     public void addPropertyDescriptor(RepositoryPropertyDescriptor arg1) throws RepositoryException {}
20
21     /**
22      * areInstances method comment.
23      */

24     public boolean areInstances(atg.beans.DynamicBeanInfo arg1) {
25         return false;
26     }
27
28     /**
29      * getBeanDescriptor method comment.
30      */

31     public atg.beans.DynamicBeanDescriptor getBeanDescriptor() {
32         return null;
33     }
34
35     /**
36      * getItemDescriptorName method comment.
37      */

38     public String JavaDoc getItemDescriptorName() {
39         return null;
40     }
41
42     /**
43      * getPropertyDescriptor method comment.
44      */

45     public atg.beans.DynamicPropertyDescriptor getPropertyDescriptor(String JavaDoc arg1) {
46         return null;
47     }
48
49     /**
50      * getPropertyDescriptors method comment.
51      */

52     public atg.beans.DynamicPropertyDescriptor[] getPropertyDescriptors() {
53         return null;
54     }
55
56     /**
57      * getPropertyNames method comment.
58      */

59     public java.lang.String JavaDoc[] getPropertyNames() {
60         return null;
61     }
62
63     /**
64      * getRepository method comment.
65      */

66     public Repository getRepository() {
67         return null;
68     }
69
70     /**
71      * getRepositoryView method comment.
72      */

73     public RepositoryView getRepositoryView() {
74         return this.repositoryView;
75     }
76
77     /**
78      * hasProperty method comment.
79      */

80     public boolean hasProperty(String JavaDoc arg1) {
81         return false;
82     }
83
84     /**
85      * isInstance method comment.
86      */

87     public boolean isInstance(Object JavaDoc arg1) {
88         return false;
89     }
90
91     /**
92      * removePropertyDescriptor method comment.
93      */

94     public void removePropertyDescriptor(String JavaDoc arg1) throws RepositoryException {}
95
96     /**
97      * getRepositoryView method comment.
98      */

99     public void setupRepositoryView(MockRepositoryView repositoryView) {
100         this.repositoryView = repositoryView;
101     }
102
103     /**
104      * updatePropertyDescriptor method comment.
105      */

106     public void updatePropertyDescriptor(RepositoryPropertyDescriptor arg1) throws RepositoryException {}
107 }
Popular Tags