首页 > 学院 > 开发设计 > 正文

最快最省构建漂亮合理的Java程序

2019-11-18 13:28:35
字体:
来源:转载
供稿:网友

  一、编译运行示例:
  
  >javac -classpath ../../libnakedobjects.jar;../../liblog4j.jar;../..libxerces.jar;classes;. Run.java
  
  二、示例程序(地址簿):
  
  // Address.java
  import org.nakedobjects.object.*;
  
  public class Address extends NakedObject {
  PRivate final TextString name = new TextString();
  private final TextString address = new TextString();
  private final TextString telephone = new TextString();
  private final TextString mobile = new TextString();
  private final TextString email = new TextString();
  
  public TextString getName() {
  return name;
  }
  
  public TextString getAddress() {
  return address;
  }
  
  public TextString getTelephone() {
  return telephone;
  }
  
  public TextString getMobile() {
  return mobile;
  }
  
  public TextString getEmail() {
  return email;
  }
  
  public Title title() {
  return name.title();
  }
  }
  
  // Run.java
  import org.nakedobjects.*;
  import org.nakedobjects.object.ClassSet;
  import org.nakedobjects.utility.ConfigurationException;
  import org.nakedobjects.object.ObjectStore;
  import org.nakedobjects.xmlpersistence.XMLObjectStore;
  import org.apache.log4j.Category;
  import org.apache.log4j.Priority;
  
  public class Run extends Defaultapplication {
  public static void main(String args[]){
  new Run();
  }
  
  public void classSet(ClassSet set){
  set.addClass(Address.class);
  }
  
  protected void configureLogging() throws ConfigurationException {
  super.configureLogging();
  Category.getDefaultHierarchy().disable(Priority.INFO);
  }
  
  protected ObjectStore installObjectStore() throws ConfigurationException {
  return new XMLObjectStore();
  }
  }

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表