Revision 201,
403 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
1 | package test.rewolucja.resources; |
---|
2 | |
---|
3 | import test.rewolucja.resources.physical.implementation.Processor; |
---|
4 | import test.rewolucja.resources.physical.implementation.ComputingNode; |
---|
5 | import test.rewolucja.resources.physical.implementation.DataCenter; |
---|
6 | |
---|
7 | |
---|
8 | public interface ResourceVisitor { |
---|
9 | |
---|
10 | public void visit(Processor processor); |
---|
11 | |
---|
12 | public void visit(ComputingNode node); |
---|
13 | |
---|
14 | public void visit(DataCenter node); |
---|
15 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.