예제 #1
0
파일: Thread.java 프로젝트: ahua/java
 /**
  * Set the name of this thread
  *
  * @param name the new name
  */
 public final void setName(String name) {
   checkAccess();
   system.setName(name);
 }