일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- MSsql
- javascript
- 자바스크립트
- Android
- jsp
- SpringSource Tool Suite
- Bootstrap
- scrollView
- WebView
- 웹 서비스
- decompiler
- 자바
- Web Service
- STS
- Java
- varags
- 안드로이드
- MANTIS
- html
- 웹뷰
- 이클립스
- MS-SQL
- TextBox
- Eclipse
- Apache Lucene
- asp.net
- C#
- Maven
- Redirect
- 컬럼명
- Today
- Total
목록Java (18)
bboks.net™
A type of inner class that has no name that you define right in the middle of a method (where static init blocks and instance init blocks count as methods). You define it, and create an object of that type as a parameter all in one line. An anonymous class is defined and instantiated in a single succinct expression using the new operator.Used for creating simple delegate callback objects.These a..
import javax.swing.*; import java.awt.*; public class NoTitleBarFrameTest { public static void main(String[] args) { JFrame f = new JFrame(); f.setUndecorated(true); f.setSize(300,300); f.setVisible(true); //JWindow w = new JWindow(); //w.setSize(300,300); //w.setVisible(true); } } setUndecorated 메소드를 사용해 보세요. 주의점을 setVisible(true) 전에 해야 한다는 것입니다. 또는 JFrame 대신 JWindow를 사용하시던지요. (밑에 주석 처리한 것입니다.)..