2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2009-2009 - DIGITEO - Bruno JOFRET
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 package org.scilab.modules.types;
15 import java.util.ArrayList;
16 import java.util.Collection;
19 * This class provides a representation on the Scilab TList datatype
23 * ScilabTList data = new ScilabTList();<br />
24 * data.add(new ScilabString("hello"));<br />
25 * data.add(new ScilabDouble(2));<br />
27 * @see org.scilab.modules.javasci.Scilab
29 public class ScilabTList extends ArrayList<ScilabType> implements ScilabType {
31 private static final long serialVersionUID = 8080160982092586620L;
34 * Construct an empty tlist.
36 * Note that the first element of this collection is the header used by
37 * Scilab to find each field type.
39 public ScilabTList() {
44 * Construct a tlist with a specified header.
46 * @param types type names of the fields.
48 public ScilabTList(String []types) {
50 String [][] typesData = new String[1][types.length];
52 add(new ScilabString(typesData));
56 * Construct a tlist containing the elements of the specified collection, in
57 * the order that they are returned by the specified collection's iterator.
60 * type names of the fields.
62 * the collection whose elements are to be placed into this
65 public ScilabTList(String[] types, Collection< ? extends ScilabType> c) {
68 String[][] typesData = new String[1][types.length];
70 add(new ScilabString(typesData));
76 * @return 1 when there is data on the list, 0 otherwise.
77 * @see org.scilab.modules.types.ScilabType#getHeight()
80 public int getHeight() {
88 * @return 1 when there is data on the list, 0 otherwise.
89 * @see org.scilab.modules.types.ScilabType#getWidth()
92 public int getWidth() {
100 * Display the representation in the Scilab language of the type<br />
101 * Note that the representation can be copied/pasted straight into Scilab
103 * @return the pretty-printed data
104 * @see java.util.AbstractCollection#toString()
107 public String toString() {
109 StringBuffer result = new StringBuffer();
111 result.append("tlist()");
112 return result.toString();
115 result.append("tlist(");
116 for (int i = 0; i < size(); i++) {
117 result.append(get(i));
118 if (i != size() - 1) {
125 return result.toString();