WEB开发网
开发学院软件开发Java 为 Eclipse Galileo 打补丁 阅读

为 Eclipse Galileo 打补丁

 2009-12-07 00:00:00 来源:WEB开发网   
核心提示: 例如,请参见清单 1 中的简单 Motorcycle 类,为 Eclipse Galileo 打补丁(2),在本文中,它是一个基准示例,您将了解补丁文件是如何出现在后面的示例中的,清单 1. 示例 Motorcycle 类packagecom.nathangood.examples;public

例如,请参见清单 1 中的简单 Motorcycle 类。在本文中,它是一个基准示例。您将对其进行修改,而且通过这个示例,您将了解补丁文件是如何出现在后面的示例中的。


清单 1. 示例 Motorcycle 类
package com.nathangood.examples; 
 
public class Motorcycle { 
 
  private int cc; 
  private String model; 
  private String make; 
  private String year; 
 
  public String getModel() { 
    return model; 
  } 
 
  public int getCc() { 
    return cc; 
  } 
 
  public void setCc(int cc) { 
    this.cc = cc; 
  } 
 
  public void setModel(String model) { 
    this.model = model; 
  } 
 
  public String getMake() { 
    return make; 
  } 
 
  public void setMake(String make) { 
    this.make = make; 
  } 
 
  public String getYear() { 
    return year; 
  } 
 
  public void setYear(String year) { 
    this.year = year; 
  } 
} 

在类中添加一个简单的构造函数,如 清单 2 中的构造函数。


清单 2. 一个使用 make 的简单的构造函数
  public Motorcycle(String make) { 
    super(); 
    this.make = make; 
  } 

上一页  1 2 3 4 5 6 7  下一页

Tags:Eclipse Galileo 补丁

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接