All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.tableConstructor.stg Maven / Gradle / Ivy

There is a newer version: 1.6.2
Show newest version

constructor(className) ::= <<
   public Table(... start)
   {
      this.setColumnName("");
      columnMap.put(this.getColumnName(), 0);
      for ( current : start)
      {
         ArrayList\ row = new ArrayList\<>();
         row.add(current);
         table.add(row);
      }
   }
>>