Package com.google.code.javax.activation

Examples of com.google.code.javax.activation.ActivationDataFlavor


    private final DataFlavor[] flavors;

    public text_xml() {
  flavors = new DataFlavor[] {
      new ActivationDataFlavor(String.class, "text/xml", "XML String"),
      new ActivationDataFlavor(String.class, "application/xml",
          "XML String"),
      new ActivationDataFlavor(StreamSource.class, "text/xml", "XML"),
      new ActivationDataFlavor(StreamSource.class, "application/xml",
          "XML")
  };
    }
View Full Code Here

TOP

Related Classes of com.google.code.javax.activation.ActivationDataFlavor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.