From: Tim P <ti...@us...> - 2008-03-20 09:39:21
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/engine In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13137/src/org/webmacro/engine Modified Files: Variable.java Log Message: Checkstyle: organise imports Index: Variable.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/engine/Variable.java,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** Variable.java 17 Mar 2006 19:00:40 -0000 1.27 --- Variable.java 20 Mar 2008 09:39:17 -0000 1.28 *************** *** 24,32 **** package org.webmacro.engine; - import org.webmacro.*; - import org.webmacro.util.Named; - import java.io.IOException; // PRIMARY CLASS: Variable --- 24,37 ---- package org.webmacro.engine; import java.io.IOException; + import org.webmacro.Context; + import org.webmacro.FastWriter; + import org.webmacro.Macro; + import org.webmacro.PropertyException; + import org.webmacro.TemplateVisitor; + import org.webmacro.Visitable; + import org.webmacro.util.Named; + // PRIMARY CLASS: Variable *************** *** 89,93 **** /** ! * The name as an array */ protected Object[] _names; --- 94,98 ---- /** ! * The name as an array. */ protected Object[] _names; *************** *** 126,130 **** /** ! * Like getPropertyNames, but only works if isSimpleName is true */ public final String getName () --- 131,135 ---- /** ! * Like getPropertyNames, but only works if isSimpleName is true. */ public final String getName () *************** *** 137,141 **** /** * Returns true if the Variable describes a simple name (one with only ! * one element) */ public boolean isSimpleName () --- 142,146 ---- /** * Returns true if the Variable describes a simple name (one with only ! * one element). */ public boolean isSimpleName () *************** *** 270,274 **** /** ! * Helper method to construct a String name from a Object[] name */ final static String makeName (Object[] names) --- 275,279 ---- /** ! * Helper method to construct a String name from a Object[] name. */ final static String makeName (Object[] names) *************** *** 305,309 **** /** ! * Return the canonical name for this variable */ public synchronized String getVariableName () --- 310,314 ---- /** ! * Return the canonical name for this variable. */ public synchronized String getVariableName () |