1 /* 2 * joey-gen and its relative products are published under the terms 3 * of the Apache Software License. 4 * 5 * Created on 2005/01/25 21:47:29 6 */ 7 package org.asyrinx.joey.gen.command.java; 8 9 import org.asyrinx.joey.gen.model.command.CompositeCommand; 10 11 /*** 12 * @author takeshi 13 */ 14 public class JavaCheckCommands extends CompositeCommand { 15 /*** 16 * 17 */ 18 public JavaCheckCommands() { 19 super(); 20 initCommands(); 21 } 22 23 protected void initCommands() { 24 add(new CheckNameOfProperty()); 25 } 26 27 }