Portfolio

Line

XML Configuration Reader


Program Description

XML display using a JTree


A software application written completely in Java using Netbeans Matisse. It's specificly designed with the ability to read xml configuration files which are local on your machine or remotely located on the server.
The remote access is with the use of telnet or vpn.



Features

 

Code Snippet

 

	public void initComponents() {

		setTitle("XML Reader");
		setLayout(new BorderLayout());
		setJMenuBar(menuBar);

		menuBar.add(fileMenu);
		fileMenu.setMnemonic('f');
		fileMenu.add(fileAction);
		fileMenu.addSeparator();
		fileMenu.add(exitAction);
        
		menuBar.add(helpMenu);
		helpMenu.setMnemonic('h');
		helpMenu.add(aboutAction);
		
		
		displayPanel.setBackground(Color.white);
		displayPanel.setLayout(new BorderLayout());
		add(displayPanel, BorderLayout.CENTER);

		pack();
		setSize(500,500);
		setLocationRelativeTo(null);
		setVisible(true);

	}


 

screenshots

File chooser



« Back to the desktop applications