예제 #1
0
 private String[] getToolTipArray() {
   String[] toolTipArray = new String[colorSet.length];
   for (int i = 0; i < toolTipArray.length; i++) {
     if (colorSet[i] == null) {
       toolTipArray[i] = app.getMenu("Transparent");
     } else {
       toolTipArray[i] = GeoGebraColorConstants.getGeogebraColorName(app, colorSet[i]);
     }
   }
   return toolTipArray;
 }
예제 #2
0
 private static geogebra.common.awt.GColor[] getColorArray(int colorSetType) {
   return GeoGebraColorConstants.getPopupArray(colorSetType);
 }