I would like convert this python line to clojure:
vtkCompositeDataSet.NAME()

When I read vtkCompositeDataSet.java I find this:
  private native long NAME_16();
  public vtkInformationStringKey NAME() {
    long temp = NAME_16();

    if (temp == 0) return null;
    return 
(vtkInformationStringKey)vtkObject.JAVA_OBJECT_MANAGER.getJavaObject(temp);
  }

I have tried in clojure this, but it doesn't work :
user=> (println (vtk.vtkCompositeDataSet$Attr/NAME))
#<CompilerException java.lang.ClassNotFoundException: 
vtk.vtkCompositeDataSet$Attr, compiling:(REPL:13)>

How I can write it in clojure?

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to