public abstract class javafx.scene.shape.Mesh
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: javafx.scene.shape.Mesh
  super_class: java.lang.Object
{
  private com.sun.javafx.scene.shape.MeshHelper meshHelper;
    descriptor: Lcom/sun/javafx/scene/shape/MeshHelper;
    flags: (0x0002) ACC_PRIVATE

  private final javafx.beans.property.BooleanProperty dirty;
    descriptor: Ljavafx/beans/property/BooleanProperty;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 57
            new javafx.scene.shape.Mesh$1
            dup
            invokespecial javafx.scene.shape.Mesh$1.<init>:()V
            invokestatic com.sun.javafx.scene.shape.MeshHelper.setMeshAccessor:(Lcom/sun/javafx/scene/shape/MeshHelper$MeshAccessor;)V
         1: .line 68
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // javafx.scene.shape.Mesh this
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            aconst_null
            putfield javafx.scene.shape.Mesh.meshHelper:Lcom/sun/javafx/scene/shape/MeshHelper;
         2: .line 88
            aload 0 /* this */
            new javafx.beans.property.SimpleBooleanProperty
            dup
            iconst_1
            invokespecial javafx.beans.property.SimpleBooleanProperty.<init>:(Z)V
            putfield javafx.scene.shape.Mesh.dirty:Ljavafx/beans/property/BooleanProperty;
         3: .line 74
            getstatic javafx.application.ConditionalFeature.SCENE3D:Ljavafx/application/ConditionalFeature;
            invokestatic javafx.application.Platform.isSupported:(Ljavafx/application/ConditionalFeature;)Z
            ifne 6
         4: .line 75
            ldc Ljavafx/scene/shape/Mesh;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            astore 1 /* logname */
        start local 1 // java.lang.String logname
         5: .line 76
            aload 1 /* logname */
            invokestatic com.sun.javafx.logging.PlatformLogger.getLogger:(Ljava/lang/String;)Lcom/sun/javafx/logging/PlatformLogger;
            ldc "System can't support ConditionalFeature.SCENE3D"
            invokevirtual com.sun.javafx.logging.PlatformLogger.warning:(Ljava/lang/String;)V
        end local 1 // java.lang.String logname
         6: .line 79
      StackMap locals: javafx.scene.shape.Mesh
      StackMap stack:
            return
        end local 0 // javafx.scene.shape.Mesh this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Ljavafx/scene/shape/Mesh;
            5    6     1  logname  Ljava/lang/String;

  final boolean isDirty();
    descriptor: ()Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.shape.Mesh this
         0: .line 91
            aload 0 /* this */
            getfield javafx.scene.shape.Mesh.dirty:Ljavafx/beans/property/BooleanProperty;
            invokevirtual javafx.beans.property.BooleanProperty.getValue:()Ljava/lang/Boolean;
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ireturn
        end local 0 // javafx.scene.shape.Mesh this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/shape/Mesh;

  void setDirty(boolean);
    descriptor: (Z)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javafx.scene.shape.Mesh this
        start local 1 // boolean value
         0: .line 95
            aload 0 /* this */
            getfield javafx.scene.shape.Mesh.dirty:Ljavafx/beans/property/BooleanProperty;
            iload 1 /* value */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual javafx.beans.property.BooleanProperty.setValue:(Ljava/lang/Boolean;)V
         1: .line 96
            return
        end local 1 // boolean value
        end local 0 // javafx.scene.shape.Mesh this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Ljavafx/scene/shape/Mesh;
            0    2     1  value  Z
    MethodParameters:
       Name  Flags
      value  

  final javafx.beans.property.BooleanProperty dirtyProperty();
    descriptor: ()Ljavafx/beans/property/BooleanProperty;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javafx.scene.shape.Mesh this
         0: .line 99
            aload 0 /* this */
            getfield javafx.scene.shape.Mesh.dirty:Ljavafx/beans/property/BooleanProperty;
            areturn
        end local 0 // javafx.scene.shape.Mesh this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavafx/scene/shape/Mesh;

  abstract com.sun.javafx.sg.prism.NGTriangleMesh getPGMesh();
    descriptor: ()Lcom/sun/javafx/sg/prism/NGTriangleMesh;
    flags: (0x0400) ACC_ABSTRACT

  abstract void updatePG();
    descriptor: ()V
    flags: (0x0400) ACC_ABSTRACT

  abstract com.sun.javafx.geom.BaseBounds computeBounds(com.sun.javafx.geom.BaseBounds);
    descriptor: (Lcom/sun/javafx/geom/BaseBounds;)Lcom/sun/javafx/geom/BaseBounds;
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      b     
}
SourceFile: "Mesh.java"
NestMembers:
  javafx.scene.shape.Mesh$1
InnerClasses:
  public abstract MeshAccessor = com.sun.javafx.scene.shape.MeshHelper$MeshAccessor of com.sun.javafx.scene.shape.MeshHelper
  javafx.scene.shape.Mesh$1