1 19 20 package org.netbeans.mdrant; 21 22 26 public class PrintExtentNames extends MdrTask.Sub { 27 28 29 public PrintExtentNames() { 30 } 31 32 public void execute() throws Exception { 33 34 String [] extentNames = getRepository().getExtentNames(); 35 for( int i = 0; i < extentNames.length; i++ ) { 36 System.out.println( extentNames[i] ); 37 } 38 39 } 40 41 } 42 | Popular Tags |