01: /* Copyright (C) 2004 - 2007 db4objects Inc. http://www.db4o.com
02:
03: This file is part of the db4o open source object database.
04:
05: db4o is free software; you can redistribute it and/or modify it under
06: the terms of version 2 of the GNU General Public License as published
07: by the Free Software Foundation and as clarified by db4objects' GPL
08: interpretation policy, available at
09: http://www.db4o.com/about/company/legalpolicies/gplinterpretation/
10: Alternatively you can write to db4objects, Inc., 1900 S Norfolk Street,
11: Suite 350, San Mateo, CA 94403, USA.
12:
13: db4o is distributed in the hope that it will be useful, but WITHOUT ANY
14: WARRANTY; without even the implied warranty of MERCHANTABILITY or
15: FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16: for more details.
17:
18: You should have received a copy of the GNU General Public License along
19: with this program; if not, write to the Free Software Foundation, Inc.,
20: 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21: package EDU.purdue.cs.bloat.editor;
22:
23: /**
24: * <tt>MultiArrayOperand</tt> encapsulates the operands to the
25: * <tt>multianewarray</tt> instruction. Each <tt>MultiArrayOperand</tt>
26: * contains the type descriptor of the new multidimensional array the
27: * instruction creates, as well as the number of dimensions in the array.
28: *
29: * @author Nate Nystrom (<a
30: * href="mailto:nystrom@cs.purdue.edu">nystrom@cs.purdue.edu</a>)
31: */
32: public class MultiArrayOperand {
33: private Type type;
34:
35: private int dim;
36:
37: /**
38: * Constructor.
39: *
40: * @param type
41: * The element type of the array.
42: * @param dim
43: * The number of dimensions of the array.
44: */
45: public MultiArrayOperand(final Type type, final int dim) {
46: this .type = type;
47: this .dim = dim;
48: }
49:
50: /**
51: * Get the element type of the array.
52: *
53: * @return The element type of the array.
54: */
55: public Type type() {
56: return type;
57: }
58:
59: /**
60: * Get the number of dimensions of the array.
61: *
62: * @return The number of dimensions of the array.
63: */
64: public int dimensions() {
65: return dim;
66: }
67:
68: /**
69: * Convert the operand to a string.
70: *
71: * @return A string representation of the operand.
72: */
73: public String toString() {
74: return type + " x " + dim;
75: }
76: }
|