Ejemplo n.º 1
0
 public AboutFrame(string title, string application, string version, string info, Image logo, string copyright, string licence, List contributors, ProjectInfo project)
 {
   base.\u002Ector(title);
   AboutFrame aboutFrame = this;
   this.application = application;
   this.version = version;
   this.copyright = copyright;
   this.info = info;
   this.logo = logo;
   this.contributors = contributors;
   this.licence = licence;
   this.resources = ResourceBundleWrapper.getBundle("org.jfree.ui.about.resources.AboutResources");
   JPanel.__\u003Cclinit\u003E();
   JPanel jpanel = new JPanel((LayoutManager) new BorderLayout());
   ((JComponent) jpanel).setBorder(AboutFrame.__\u003C\u003ESTANDARD_BORDER);
   JTabbedPane tabs = this.createTabs(project);
   ((Container) jpanel).add((Component) tabs);
   this.setContentPane((Container) jpanel);
   ((Window) this).pack();
 }
Ejemplo n.º 2
0
 public AboutDialog(Dialog owner, string title, ProjectInfo project)
 {
   base.\u002Ector(owner);
   AboutDialog aboutDialog = this;
   this.init(title, project.getName(), new StringBuffer().append("Version ").append(project.getVersion()).toString(), project.getInfo(), project.getLogo(), project.getCopyright(), project.getLicenceText(), project.getContributors(), project);
 }
Ejemplo n.º 3
0
 public AboutFrame(string title, ProjectInfo project)
   : this(title, project.getName(), new StringBuffer().append("Version ").append(project.getVersion()).toString(), project.getInfo(), project.getLogo(), project.getCopyright(), project.getLicenceText(), project.getContributors(), project)
 {
 }
Ejemplo n.º 4
0
 public Library(ProjectInfo project)
   : this(project.getName(), project.getVersion(), project.getLicenceName(), project.getInfo())
 {
 }
Ejemplo n.º 5
0
 public LibraryPanel(ProjectInfo projectInfo)
   : this(LibraryPanel.getLibraries(projectInfo))
 {
 }