Skip to content
  • This project
    • Loading...
  • Sign in

Дмитрий Корытько / hware

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • hardwareconfig
  • ..
  • components
  • ExtJLabel.java
  • root's avatar
    save · 14c7fccc
    14c7fccc Browse Files
    root authored 2015-08-12 17:48:44 +0300
ExtJLabel.java 222 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
package org.emercit.components;

import javax.swing.JLabel;

public class ExtJLabel extends JLabel {

	public ExtJLabel(String title) {
		this.setBounds(0, 0, 70, 50);
		this.setVisible(true);
		this.setText(title);

	}
}