javafx-ui-common/src/com/sun/javafx/tk/DummyToolkit.java

Print this page




  46 import javafx.stage.FileChooser.ExtensionFilter;
  47 import javafx.stage.Modality;
  48 import javafx.stage.StageStyle;
  49 import com.sun.javafx.embed.HostInterface;
  50 import com.sun.javafx.geom.Path2D;
  51 import com.sun.javafx.geom.Shape;
  52 import com.sun.javafx.geom.transform.BaseTransform;
  53 import com.sun.javafx.perf.PerformanceTracker;
  54 import com.sun.javafx.runtime.async.AsyncOperation;
  55 import com.sun.javafx.runtime.async.AsyncOperationListener;
  56 import com.sun.javafx.scene.text.HitInfo;
  57 import com.sun.javafx.scene.text.TextLayoutFactory;
  58 import com.sun.javafx.sg.PGAmbientLight;
  59 import com.sun.javafx.sg.PGArc;
  60 import com.sun.javafx.sg.PGBox;
  61 import com.sun.javafx.sg.PGCanvas;
  62 import com.sun.javafx.sg.PGCircle;
  63 import com.sun.javafx.sg.PGCubicCurve;
  64 import com.sun.javafx.sg.PGCylinder;
  65 import com.sun.javafx.sg.PGEllipse;

  66 import com.sun.javafx.sg.PGGroup;
  67 import com.sun.javafx.sg.PGImageView;
  68 import com.sun.javafx.sg.PGLightBase;
  69 import com.sun.javafx.sg.PGLine;
  70 import com.sun.javafx.sg.PGMeshView;
  71 import com.sun.javafx.sg.PGParallelCamera;
  72 import com.sun.javafx.sg.PGPath;
  73 import com.sun.javafx.sg.PGPerspectiveCamera;
  74 import com.sun.javafx.sg.PGPhongMaterial;
  75 import com.sun.javafx.sg.PGPointLight;
  76 import com.sun.javafx.sg.PGPolygon;
  77 import com.sun.javafx.sg.PGPolyline;
  78 import com.sun.javafx.sg.PGQuadCurve;
  79 import com.sun.javafx.sg.PGRectangle;
  80 import com.sun.javafx.sg.PGRegion;
  81 import com.sun.javafx.sg.PGSVGPath;
  82 import com.sun.javafx.sg.PGShape.StrokeLineCap;
  83 import com.sun.javafx.sg.PGShape.StrokeLineJoin;
  84 import com.sun.javafx.sg.PGShape.StrokeType;
  85 import com.sun.javafx.sg.PGSphere;


 362     public PGGroup createPGGroup() {
 363         throw new UnsupportedOperationException("Not supported yet.");
 364     }
 365 
 366     @Override
 367     public PGText createPGText() {
 368         throw new UnsupportedOperationException("Not supported yet.");
 369     }
 370 
 371     @Override
 372     public PGRegion createPGRegion() {
 373         throw new UnsupportedOperationException("Not supported yet.");
 374     }
 375 
 376     @Override
 377     public PGCanvas createPGCanvas() {
 378         throw new UnsupportedOperationException("Not supported yet.");
 379     }
 380 
 381     @Override





 382     public Object createSVGPathObject(SVGPath svgpath) {
 383         throw new UnsupportedOperationException("Not supported yet.");
 384     }
 385 
 386     @Override
 387     public Path2D createSVGPath2D(SVGPath svgpath) {
 388         throw new UnsupportedOperationException("Not supported yet.");
 389     }
 390 
 391     @Override
 392     public boolean imageContains(Object image, float x, float y) {
 393         throw new UnsupportedOperationException("Not supported yet.");
 394     }
 395 
 396     @Override
 397     public com.sun.javafx.tk.TKClipboard getSystemClipboard() {
 398         throw new UnsupportedOperationException("Not supported yet.");
 399     }
 400 
 401     @Override




  46 import javafx.stage.FileChooser.ExtensionFilter;
  47 import javafx.stage.Modality;
  48 import javafx.stage.StageStyle;
  49 import com.sun.javafx.embed.HostInterface;
  50 import com.sun.javafx.geom.Path2D;
  51 import com.sun.javafx.geom.Shape;
  52 import com.sun.javafx.geom.transform.BaseTransform;
  53 import com.sun.javafx.perf.PerformanceTracker;
  54 import com.sun.javafx.runtime.async.AsyncOperation;
  55 import com.sun.javafx.runtime.async.AsyncOperationListener;
  56 import com.sun.javafx.scene.text.HitInfo;
  57 import com.sun.javafx.scene.text.TextLayoutFactory;
  58 import com.sun.javafx.sg.PGAmbientLight;
  59 import com.sun.javafx.sg.PGArc;
  60 import com.sun.javafx.sg.PGBox;
  61 import com.sun.javafx.sg.PGCanvas;
  62 import com.sun.javafx.sg.PGCircle;
  63 import com.sun.javafx.sg.PGCubicCurve;
  64 import com.sun.javafx.sg.PGCylinder;
  65 import com.sun.javafx.sg.PGEllipse;
  66 import com.sun.javafx.sg.PGExternalNode;
  67 import com.sun.javafx.sg.PGGroup;
  68 import com.sun.javafx.sg.PGImageView;
  69 import com.sun.javafx.sg.PGLightBase;
  70 import com.sun.javafx.sg.PGLine;
  71 import com.sun.javafx.sg.PGMeshView;
  72 import com.sun.javafx.sg.PGParallelCamera;
  73 import com.sun.javafx.sg.PGPath;
  74 import com.sun.javafx.sg.PGPerspectiveCamera;
  75 import com.sun.javafx.sg.PGPhongMaterial;
  76 import com.sun.javafx.sg.PGPointLight;
  77 import com.sun.javafx.sg.PGPolygon;
  78 import com.sun.javafx.sg.PGPolyline;
  79 import com.sun.javafx.sg.PGQuadCurve;
  80 import com.sun.javafx.sg.PGRectangle;
  81 import com.sun.javafx.sg.PGRegion;
  82 import com.sun.javafx.sg.PGSVGPath;
  83 import com.sun.javafx.sg.PGShape.StrokeLineCap;
  84 import com.sun.javafx.sg.PGShape.StrokeLineJoin;
  85 import com.sun.javafx.sg.PGShape.StrokeType;
  86 import com.sun.javafx.sg.PGSphere;


 363     public PGGroup createPGGroup() {
 364         throw new UnsupportedOperationException("Not supported yet.");
 365     }
 366 
 367     @Override
 368     public PGText createPGText() {
 369         throw new UnsupportedOperationException("Not supported yet.");
 370     }
 371 
 372     @Override
 373     public PGRegion createPGRegion() {
 374         throw new UnsupportedOperationException("Not supported yet.");
 375     }
 376 
 377     @Override
 378     public PGCanvas createPGCanvas() {
 379         throw new UnsupportedOperationException("Not supported yet.");
 380     }
 381 
 382     @Override
 383     public PGExternalNode createPGExternalNode() {
 384         throw new UnsupportedOperationException("Not supported yet.");
 385     }
 386 
 387     @Override
 388     public Object createSVGPathObject(SVGPath svgpath) {
 389         throw new UnsupportedOperationException("Not supported yet.");
 390     }
 391 
 392     @Override
 393     public Path2D createSVGPath2D(SVGPath svgpath) {
 394         throw new UnsupportedOperationException("Not supported yet.");
 395     }
 396 
 397     @Override
 398     public boolean imageContains(Object image, float x, float y) {
 399         throw new UnsupportedOperationException("Not supported yet.");
 400     }
 401 
 402     @Override
 403     public com.sun.javafx.tk.TKClipboard getSystemClipboard() {
 404         throw new UnsupportedOperationException("Not supported yet.");
 405     }
 406 
 407     @Override