1 <?xml version='1.0' encoding='UTF-8'?>
   2 <!--   
   3    Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
   4    
   5    DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   6    
   7    The contents of this file are subject to the terms of either the Universal Permissive License 
   8    v 1.0 as shown at http://oss.oracle.com/licenses/upl
   9    
  10    or the following license:
  11    
  12    Redistribution and use in source and binary forms, with or without modification, are permitted
  13    provided that the following conditions are met:
  14    
  15    1. Redistributions of source code must retain the above copyright notice, this list of conditions
  16    and the following disclaimer.
  17    
  18    2. Redistributions in binary form must reproduce the above copyright notice, this list of
  19    conditions and the following disclaimer in the documentation and/or other materials provided with
  20    the distribution.
  21    
  22    3. Neither the name of the copyright holder nor the names of its contributors may be used to
  23    endorse or promote products derived from this software without specific prior written permission.
  24    
  25    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
  26    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  27    FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
  28    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  30    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  31    WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
  32    WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33 -->
  34 <schema targetNamespace="org.openjdk.jmc.ui" xmlns="http://www.w3.org/2001/XMLSchema">
  35 <annotation>
  36       <appInfo>
  37          <meta.schema plugin="org.openjdk.jmc.ui" id="filetypeopener" name="File Type Opener"/>
  38       </appInfo>
  39       <documentation>
  40          An extension point for adding file type openers to JDK Mission Control.
  41       </documentation>
  42    </annotation>
  43 
  44    <element name="extension">
  45       <annotation>
  46          <appInfo>
  47             <meta.element />
  48          </appInfo>
  49       </annotation>
  50       <complexType>
  51          <sequence>
  52             <element ref="filetype"/>
  53          </sequence>
  54          <attribute name="point" type="string" use="required">
  55             <annotation>
  56                <documentation>
  57                   
  58                </documentation>
  59             </annotation>
  60          </attribute>
  61          <attribute name="id" type="string">
  62             <annotation>
  63                <documentation>
  64                   
  65                </documentation>
  66             </annotation>
  67          </attribute>
  68          <attribute name="name" type="string">
  69             <annotation>
  70                <documentation>
  71                   
  72                </documentation>
  73                <appInfo>
  74                   <meta.attribute translatable="true"/>
  75                </appInfo>
  76             </annotation>
  77          </attribute>
  78       </complexType>
  79    </element>
  80 
  81    <element name="filetype">
  82       <complexType>
  83          <sequence>
  84             <element ref="fileextension" minOccurs="1" maxOccurs="unbounded"/>
  85          </sequence>
  86          <attribute name="name" type="string">
  87             <annotation>
  88                <documentation>
  89                   The name of the file type opener
  90                </documentation>
  91             </annotation>
  92          </attribute>
  93          <attribute name="description" type="string">
  94             <annotation>
  95                <documentation>
  96                   The description of the file type opener.
  97                </documentation>
  98             </annotation>
  99          </attribute>
 100          <attribute name="class" type="string" use="required">
 101             <annotation>
 102                <documentation>
 103                   An class implementing IFileOpenerCommand that will be used to open up the appropriate editor for a file
 104                </documentation>
 105                <appInfo>
 106                   <meta.attribute kind="java"/>
 107                </appInfo>
 108             </annotation>
 109          </attribute>
 110          <attribute name="default" type="string">
 111             <annotation>
 112                <documentation>
 113                   
 114                </documentation>
 115             </annotation>
 116          </attribute>
 117       </complexType>
 118    </element>
 119 
 120    <element name="fileextension">
 121       <complexType>
 122          <attribute name="fileextension" type="string" use="required">
 123             <annotation>
 124                <documentation>
 125                   A file extension supported by this file type opener, eg. xml or txt
 126                </documentation>
 127             </annotation>
 128          </attribute>
 129          <attribute name="name" type="string">
 130             <annotation>
 131                <documentation>
 132                   The name of the fileextension for this file type opener. Eg, &quot;XML file&quot;, &quot;Zip file&quot;
 133                </documentation>
 134             </annotation>
 135          </attribute>
 136       </complexType>
 137    </element>
 138 
 139    <annotation>
 140       <appInfo>
 141          <meta.section type="since"/>
 142       </appInfo>
 143       <documentation>
 144          5.0.0
 145       </documentation>
 146    </annotation>
 147 
 148 
 149 
 150 
 151    <annotation>
 152       <appInfo>
 153          <meta.section type="copyright"/>
 154       </appInfo>
 155       <documentation>
 156          Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
 157       </documentation>
 158    </annotation>
 159 
 160 </schema>