考勤管理系统源码

源代码在线查看: style.java

软件大小: 615 K
上传用户: uimeet
关键词: 考勤管理系统 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				package com.wiley.compBooks.EJwithUML.Base.HtmlPrimitives.Core;								/**				 * Style is an extendable enumerated type that captures some				 * basic styles. Most applications should extend this class				 * with a set of application specific styles				 **/				public class Style				{				  private String value;								  /** Construct a Style object with the specified style class				   *  as its value. */				  protected Style(String style)				  {				    this.value = style;				  }								  public String toString()				  {				    return this.value;				  }								  public final static Style PAGE_TITLE = new Style("page_title");				  public final static Style IMPORTANT_TEXT = new Style("important_text");				  public final static Style WARNING_TEXT = new Style("warning_text");				  public final static Style NORMAL_TEXT = new Style("normal_text");				  public final static Style FINEPRINT_TEXT = new Style("fineprint_text");								  public final static Style NORMAL_IMAGE = new Style("normal_image");				  public final static Style DEBUG_TABLE = new Style("debug_table");								}			

相关资源