( Class clas )
| 1471 | /** |
| 1472 | */ |
| 1473 | public void importStatic( Class clas ) |
| 1474 | { |
| 1475 | if ( importedStatic == null ) |
| 1476 | importedStatic = new ArrayList<Class>(); |
| 1477 | |
| 1478 | // If it exists, remove it and add it at the end (avoid memory leak) |
| 1479 | importedStatic.remove( clas ); |
| 1480 | |
| 1481 | importedStatic.add( clas ); |
| 1482 | nameSpaceChanged(); |
| 1483 | } |
| 1484 | |
| 1485 | /** |
| 1486 | Set the package name for classes defined in this namespace. |
no test coverage detected