public ProjectInfo(String name,
String version,
String info,
Image logo,
String copyright,
String licenceName,
String licenceText) {
super(name, version, info, copyright, licenceName);
this.logo = logo;
this.licenceText = licenceText;
}
Constructs a project info object. Parameters:
name - the name of the project.
version - the version.
info - other info (usually a URL).
logo - the project logo.
copyright - a copyright statement.
licenceName - the name of the licence that applies to the project.
licenceText - the text of the licence that applies to the project.
|