Difference between revisions of "Com.bitplan.gui"

From BITPlan Wiki
Jump to navigation Jump to search
(Created page with "{{OsProject|title=Generic GUI framework for Java|url=https://github.com/BITPlan/com.bitplan.gui|version=0.0.3}}")
 
Line 1: Line 1:
 
{{OsProject|title=Generic GUI framework for Java|url=https://github.com/BITPlan/com.bitplan.gui|version=0.0.3}}
 
{{OsProject|title=Generic GUI framework for Java|url=https://github.com/BITPlan/com.bitplan.gui|version=0.0.3}}
 +
= Simple Platform neutral Graphical User Interface Description =
 +
== Main classes and packages ==
 +
<uml>
 +
  package com.bitplan.gui {
 +
    class App {
 +
    }
 +
    class Form {
 +
    }
 +
    class Group {
 +
    }
 +
    class Field {
 +
    }
 +
    class Menu {
 +
    }
 +
    class MenuItem {
 +
    }
 +
  }
 +
  package com.bitplan.i18n {
 +
    interface I18n {
 +
    }
 +
    class Translate {
 +
    }
 +
  }
 +
<uml>

Revision as of 16:08, 5 August 2018

OsProject
id  
state  
owner  
title  Generic GUI framework for Java
url  https://github.com/BITPlan/com.bitplan.gui
version  0.0.3
description  
date  
since  
until  

Simple Platform neutral Graphical User Interface Description

Main classes and packages

<uml>

 package com.bitplan.gui { 
   class App {
   }
   class Form {
   }
   class Group {
   }
   class Field {
   }
   class Menu {
   }
   class MenuItem {
   }
 }
 package com.bitplan.i18n {
   interface I18n {
   }
   class Translate {
   }
 }

<uml>