Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 76 of 79

Tracking database for cast, characters, and groups involved in a live performance. This application is written in Java using Swing and Java DB.

0
 
  0 reviews  |  0 users  |  7,584 lines of code  |  0 current contributors  |  Analyzed about 22 hours ago
 
 

EGlassPane merupakan project library untuk Swing yang berupa Glasspane yang dapat digunakan oleh JFrame atau JDialog. EGlassPane merupakan container atau penyokong dari komponen - komponen unik yang terdapat dalam project eglasspane, seperti ETransition, EImageTransition dan lain - lain. ... [More] EGlassPane merupakan project Swing yang dikhususkan untuk menampilkan efect - efect yang tidak seperti biasa ada dalam aplikasi. [Less]

0
 
  0 reviews  |  0 users  |  2,144 lines of code  |  0 current contributors  |  Analyzed 10 days ago
 
 

The aim of the NMR Workflow project is to eventually develop a user-friendly environment for NMR data processing. In particular, irrelevant details (file conversions, executing programs, etc.) should be handled by NMR Workflow while also stream-lining the development of NMR data-processing schema ... [More] through abstractions. More experienced developers should be able to develop and share "workflows" for processing data, while all users should be able to use the workflows to easily process their data. [Less]

0
 
  0 reviews  |  0 users  |  1,554 lines of code  |  0 current contributors  |  Analyzed about 17 hours ago
 
 

Software for conversion of files in CSV to SQL. For MySQL, PostGreSQL, MSSQL, SQLITE...

0
 
  0 reviews  |  0 users  |  1,344 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

LayoutEditorA Java Swing application for page layout. The editor was originally part of project owned by a Swedish company called BlueBrim AB. The goal of the project was to develop a complete prepress system including modules for editorial, advertising, subscription and distribution. The ... [More] layouteditor was designed to be a module in this client server system using GemStone J for persistence and distribution of objects between server and clients. FeaturesQuarkXPress look alike user interface Tools for creating various page items: Text, Image, Line, Orthogonal Line, Layout Area All Page Items have shape, stroke and fill Special page item capable of projecting a tagged text and images in a layout PostScript output Include EPS files in the layout. Kerning, tracking and pair kerning You can try it via Java Web Start [Less]

0
 
  0 reviews  |  0 users  |  196,267 lines of code  |  0 current contributors  |  Analyzed 1 day ago
 
 

Top FinPersonal finance and portfolio management

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

Application description: The Jasper Patient Tracker is a Java Swing and MySQL application designed for a clinic or a small doctor's office. The basic problem application will solve: This application is free forever so the likelihood an organization trying the application is increased. ... [More] Adaptation of software in the health care IT industry has traditionally been guarded. Authors Dana Blankenhorn and Paula Rooneyof in a 08/02/2007 article entitled "What is stalling open source in healthcare?" cite proprietary advantage and bureaucracy keeping adoption of the open source Medsphere at bay (http://blogs.zdnet.com/open-source/?p=1272). A health care IT user or developer debugging the inner workings of the application might gain enough trust to the application to approve it for use. Currently there exist no SourceForge open source Java Swing patient tracking or Java Swing EHR application as a SourceForge project at the time of this writing. A search on SourceForge using "(+public +health +patient)" produced one open source application "eBed - Surge Capacity for Public Health", whereas "(+public +health +patient +swing)" produced a zero listing. A web application was ruled-out due to insecurities and reliability. One such application can be found as a PHP solution at MirrorMed at http://www.mirrormed.org. Our application is explicitly non-web. Another application, Open Dental at http://en.wikipedia.org/wiki/Open_Dental, has up to "1,000 dentists using OD, and guess 10,000,000 patient records" although it is based on .Net C#. Java Swing has a far wide base of code developers to increase the likelihood of attaining committers to the project. A forum for applications which process basic EHR (Electronic Health Record) transactions can be found at http://www.doctorsgadgets.com/forum/open-source-medical-software. Our application has EHR as a basic component in tracking patients. Technologies used: Java Swing was selected to allow the application to operate in a closed computer network. The application is designed for multiple users. For example, a receptionist and a practitioner can use the application simultaneously. The native database is MySQL through JDBC although provisions will be made to connect to other databases. All database SQL statements are transaction based. Installation is through Java Web Start to ease IT management. The targeted platforms are Windows, Mac, and Linux. The initial committers are versed on the Windows and Mac computers. The application is designed with Spanish as the first multi-language to reach the greatest adoption on the American continent. The provision for another language will later facilitate other languages besides English and Spanish. [Less]

0
 
  0 reviews  |  0 users  |  7,125 lines of code  |  0 current contributors  |  Analyzed 7 days ago
 
 

Tyburn is a fast, minimal, extensible Java Swing harness. This project has been driven using BDD techniques. This means that, in src/behaviour, you will find examples of Tyburn being used. These examples also serve as Tyburn's tests. Tyburn was originally part of JBehave 1.0, and has been ... [More] extracted to allow independent development of both libraries. Here's how to use it: WindowControl control = new WindowControl("my.named.frame"); control.clickButton("a.button"); control.enterText("a.textfield", "Text1");You can access any component by grabbing it by name from the window control. If you do anything with that component you can also use the Idler to wait for the Swing Queue to empty: JComboBox comboBox = (JComboBox)windowControl.findComponent("my.named.combo"); comboBox.selectItem("an item"); new Idler().waitForIdle(); [Less]

0
 
  0 reviews  |  0 users  |  1,709 lines of code  |  0 current contributors  |  Analyzed 2 days ago
 
 

OverviewLog4FIX is an open source FIX logger/ message viewer, written in Java 5, and based on QuickFIX/J. Log4FIX provides a pretty view for FIX messages by utilizing the QuickFIX data dictionary. Log4FIX works in two main modes: tightly integrated with your QuickFIX/J application (real time ... [More] logging) standalone application capable of parsing any file with valid FIX messages (replay a session) [Less]

0
 
  0 reviews  |  0 users  |  5,232 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

AnyLayout is a Java layout manager that delegates all layout tasks to user-provided constraints. It makes a few concessions to its simplicity to be as easy to use as it can be. The main aim is to take the magic out of layout, to prevent surprises. Here is a sample constraint implementation: ... [More] Constraint centre=new Constraint() {     public int getLeft(LayoutContext context)     {         return (context.getParentSize()-context.getPreferredSize())/2;     }     public int getY(LayoutContext context)     {         return (context.getParentSize()-context.getPreferredSize())/2;     }     public int getWidth(LayoutContext context)     {         return context.getPreferredSize();     }     public int getHeight(LayoutContext context)     {         return context.getPreferredSize();     }     public void close()     {     } }; You would expect most constraints to have identical implementations for getWidth and getHeight, so one of the optional extras to the API lets you define a constraint in terms of just X and Y (XYConstraint) and then expand it to make a Constraint from the XYConstraint, adding in normal implementations for getWidth and getHeight. This is done in anylayout.extras.ConstraintUtility.expand. Also, the code duplication in the above example can be eliminated by using anylayout.extras.ConstraintBuilder, e.g.: Get nearEdge=new Get() {     public Integer get(LayoutContext context)     {         return (context.getParentSize()-context.getPreferredSize())/2;     } }; Get preferredSize=new Get() {     public Integer get(LayoutContext context)     {         return context.getPreferredSize();     } }; Constraint centre=ConstraintBuilder.buildConstraint(nearEdge,nearEdge,size,size); This project will be evolved to make it as simple to use as possible, but to retain the simplicity that is in its core now (the anylayout top-level package). ---- To run the examples provided, check out the source code and run: ant examples [Less]

0
 
  0 reviews  |  0 users  |  1,371 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.