Changeset f953ce99dfcf22ed5e2872e0a0bb60051481264c

Show
Ignore:
Timestamp:
11/01/06 10:59:12 (2 years ago)
Author:
Christopher Jung <bktheg@web.de>
git-committer:
Christopher Jung <bktheg@web.de> 1162375152 +0100
git-parent:

[cf73a30bd1283fd6d66b7de128ad1954a1b0199d]

git-author:
Christopher Jung <bktheg@web.de> 1162375152 +0100
Message:

tableBegin(...) akzeptiert nun auch die Breitenangaben als String

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/net/driftingsouls/ds2/server/framework/Common.java

    rae09dfe rf953ce9  
    221221         */ 
    222222        public static String tableBegin( int width, String align ) { 
     223                return tableBegin(Integer.toString(width), align); 
     224        } 
     225         
     226        /** 
     227         * Gibt den Anfangsteil einer DS-Tabelle als String zurueck 
     228         * @param width Die gewuenschte Breite 
     229         * @param align Die gewuenschte Ausrichtung des Inhalts (<code>left</code>,<code>center</code>,<code>right</code>,<code>justify</code>) 
     230         * @return Der Tabellenkopf als String 
     231         * @see #tableEnd() 
     232         */ 
     233        public static String tableBegin( String width, String align ) { 
    223234                StringBuilder sb = new StringBuilder(200); 
    224235