Revision 104,
391 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[104] | 1 | package test.rewolucja.resources; |
---|
| 2 | |
---|
| 3 | import test.rewolucja.resources.physical.implementation.CPU; |
---|
| 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(CPU 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.