source: DCWoRMS/trunk/src/schedframe/resources/computing/location/Location.java @ 477

Revision 477, 552 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.resources.computing.location;
2
3import schedframe.Parameters;
4
5public class Location {
6       
7        protected long horizontal;
8        protected long vertical;
9        protected long depth;
10       
11        public Location(long horizontal, long vertical, long depth) {
12                super();
13                this.horizontal = horizontal;
14                this.vertical = vertical;
15                this.depth = depth;
16        }
17       
18        public long getHorizontal() {
19                return horizontal;
20        }
21        public long getVertical() {
22                return vertical;
23        }
24        public long getDepth() {
25                return depth;
26        }
27       
28        public void init(Parameters parameters){
29               
30        }
31       
32}
Note: See TracBrowser for help on using the repository browser.