Hi!<br><br>I have a class called Computer, and this has a public attribute, an array of FileSystems:<br>class Computer {<br>    FileSystem[] FileSystems ;<br>    ...<br>    ...<br>    ...<br>}<br><br>class FIleSystem {<br>
    long capacity;<br>
    ...<br>
    ...<br>
    ...<br>}<br><br>I would like to create rules on the FileSystem class capacity attribute (for example: capacity &gt; 200000).<br>How can I do this with adding just the Computer class to working memory?(without adding each FileSystem)<br>
<br>Thanks<br>Janos Ribli<br>