<templates>
  <!-- ########## C A M E R A      S T A R T ########## -->
  <template id="com.wm.povclipse.template.camera"
    name="camera"
    description="Default camera template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[camera {
    perspective /* perspective | orthographic | fisheye | ultra_wide_angle | omnimax | panoramic | cylinder CylinderType | spherical */
    location  <0.0, 0.0 ,0.0>
    direction <0.0 ,0.0, 1.0>
    right 1.33*x
    up y
    sky <0.0, 1.0, 0.0>
}
]]></template>
<!-- ########## C A M E R A      E N D ########## -->

<!-- ########## A T H M O S P H E R I C   E F F E C T S      S T A R T ########## -->
  <template id="com.wm.povclipse.template.background"
    name="background"
    description="Background color template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[background {COLOR}]]></template>

  <template id="com.wm.povclipse.template.fog"
    name="fog"
    description="Fog template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[fog {
    COLOR
    distance   DISTANCE
    fog_type   1
    lambda     2.0
    fog_offset 0.0
    fog_alt    0.0
    octaves    6
    omega      0.5
    turbulence <0.0, 0.0, 0.0>
    turb_depth 0.5
    up         <0.0, 1.0, 0.0>
}
]]></template>

  <template id="com.wm.povclipse.template.sky_sphere"
    name="sky_sphere"
    description="Sky Sphere template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[sky_sphere {
    pigment {
        // ...
    }
}
]]></template>

  <template id="com.wm.povclipse.template.rainbow"
    name="rainbow"
    description="Rainbow template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[rainbow {
    direction     <0.0, 0.0, 1.0>
    angle         42.5
    width         5
    distance      1000
    arc_angle     120.0
    falloff_angle 30.0
    jitter        0.01
    up            y
    color_map { Rainbow_Color_Map }
}
]]></template>
<!-- ########## A T H M O S P H E R I C   E F F E C T S      E N D ########## -->

<!-- ########## G L O B A L   S E T T I N G S      S T A R T ########## -->
<template id="com.wm.povclipse.template.global_settings"
    name="global_settings"
    description="Global Settings template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[global_settings {
    charset            ascii
    adc_bailout        1/255
    ambient_light      <1.0, 1.0, 1.0>
    assumed_gamma      No gamma correction
    hf_gray_16         off
    irid_wavelength    <0.25,0.18,0.14>
    max_trace_level    5
    max_intersections  64
    number_of_waves    10
    noise_generator    2

    radiosity {
        adc_bailout      0.01
        always_sample    on
        brightness       1.0
        count            35  // (max = 1600)
        error_bound      1.8
        gray_threshold   0.0
        low_error_factor 0.5
        max_sample       non-positive value
        minimum_reuse    0.015
        nearest_count    5  // (max = 20)
        normal           off
        pretrace_start   0.08
        pretrace_end     0.04
        recursion_limit  3
     }
}
]]></template>
<!-- ########## G L O B A L   S E T T I N G S      E N D ########## -->

<!-- ########## O B J E C T S      S T A R T ########## -->
<!-- ++++++++++ Finite Solid Primitive Objects S T A R T ++++++++++ -->
<template id="com.wm.povclipse.template.blob"
    name="blob"
    description="Blob object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[blob {
    hierarchy on
    sturm     off
    threshold 1.0
//    sphere{<Center>, Radius, [strength] Strength [TEXTURE | PIGMENT | NORMAL | FINISH | TRANSFORMATION] }
//    cylinder{<End1>, <End2>, Radius, [ strength ] Strength [TEXTURE | PIGMENT | NORMAL | FINISH | TRANSFORMATION] }
//    TEXTURE | PIGMENT | NORMAL | FINISH | TRANSFORMATION
}
]]></template>

<template id="com.wm.povclipse.template.box"
    name="box"
    description="Box object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[box { <0.0, 0.0, 0.0>, <1.0, 1.0, 1.0>
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.cone"
    name="cone"
    description="Cone object"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[cone { <0.0, 0.0, 0.0>, 1.0, <0.0, 1.0, 0.0>, 0.2
//    open
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.cylinder"
    name="cylinder"
    description="Cylinder object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[cylinder { <0.0, 0.0, 0.0>, <0.0, 1.0, 0.0>, 1.0
//    open
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.height_field"
    name="height_field"
    description="Height field object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[height_field {
    gif | tga | pot | png | pgm | ppm | jpeg | tiff | sys | function
    "filename"
    hierarchy   on
    smooth      off
    water_level 0.0
//    [OBJECT_MODIFIER...]
}
]]></template>

  <template id="com.wm.povclipse.template.julia_fractal_quaternion"
    name="julia_fractal_quaternion"
    description="Julia fractal quaternion object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[julia_fractal {
    <4D_Julia_Parameter>
    quaternion
    sqr | cube
    max_iteration 20
    precision     20
    slice <0.0, 0.0 ,0.0, 1.0>, 0.0
//    [OBJECT_MODIFIER...]
}
]]></template>

  <template id="com.wm.povclipse.template.julia_fractal_hypercomplex"
    name="julia_fractal_hypercomplex"
    description="Julia fractal hypercomplex object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[julia_fractal {
    <4D_Julia_Parameter>
    hypercomplex
    sqr | cube | exp | reciprocal | sin | asin | sinh | asinh | cos | acos | cosh | acosh | tan | atan |tanh | atanh | ln | pwr( X_Val, Y_Val )
    max_iteration 20
    precision     20
    slice <0.0, 0.0 ,0.0, 1.0>, 0.0
//    [OBJECT_MODIFIER...]
}
]]></template>

  <template id="com.wm.povclipse.template.lathe"
    name="lathe"
    description="Lathe object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[lathe {
    linear_spline | quadratic_spline | cubic_spline | bezier_spline
    Number_Of_Points, 
    <Point_1>, ... <Point_n>
    sturm off
//    [OBJECT_MODIFIER...]
}
]]></template>

  <template id="com.wm.povclipse.template.prism"
    name="prism"
    description="Prism object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[prism {
    linear_spline | quadratic_spline | cubic_spline | bezier_spline | linear_sweep | conic_sweep
    Height_1, Height_2, Number_Of_Points,
    <Point_1>, <Point_2>, ... <Point_n>
    sturm off
//    open
//    [OBJECT_MODIFIER...]
    }
]]></template>

  <template id="com.wm.povclipse.template.sphere"
    name="sphere"
    description="Sphere object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[sphere {
    <0.0, 0.0, 0.0>, 1.0
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.sphere_sweep"
    name="sphere_sweep"
    description="Sphere sweep object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[sphere_sweep {
    linear_spline | b_spline | cubic_spline
    NUM_OF_SPHERES,
    <CENTER>, RADIUS,
    <CENTER>, RADIUS,
    ...
    <CENTER>, RADIUS
    tolerance 0.000001
//    [OBJECT_MODIFIERS]
}
]]></template>

  <template id="com.wm.povclipse.template.superellipsoid"
    name="superellipsoid"
    description="Superquadric ellipsoid object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[superellipsoid {
    <Value_E, Value_N>
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.sor"
    name="sor"
    description="Surface of Revolution object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[sor {
    Number_Of_Points, 
    <Point_1>, <Point_2>, ... <Point_n>
    sturm off
//    open
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.text"
    name="text"
    description="Text object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[text {
    ttf "fontname.ttf/ttc" "String_of_Text"
    Thickness, <Offset>
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.torus"
    name="torus"
    description="Torus object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[torus {
    Major, Minor
    sturm off
//    [OBJECT_MODIFIERS...]
}
]]></template>
<!-- ++++++++++ Finite Solid Primitive Objects END ++++++++++ -->

<!-- ++++++++++ Finite Patch Primitives Objects START ++++++++++ -->

  <template id="com.wm.povclipse.template.bicubic_patch"
    name="bicubic_patch"
    description="Bicubic patch object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[bicubic_patch {
    type 0   // 0 or 1
    flatness 0.0
    u_steps  0
    v_steps  0
    <Point_1>,<Point_2>,<Point_3>,<Point_4>,
    <Point_5>,<Point_6>,<Point_7>,<Point_8>,
    <Point_9>,<Point_10>,<Point_11>,<Point_12>,
    <Point_13>,<Point_14>,<Point_15>,<Point_16>
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.disc"
    name="disc"
    description="Disc object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[disc {
    <Center>, <Normal>, Radius [, Hole_Radius]
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.mesh"
    name="mesh"
    description="Mesh object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[mesh {
    triangle {
        <Corner_1>, <Corner_2>, <Corner_3>
//        uv_vectors <uv_Corner_1>, <uv_Corner_2>, <uv_Corner_3>
//        texture { TEXTURE_IDENTIFIER }
//        texture_list {
//            TEXTURE_IDENTIFIER TEXTURE_IDENTIFIER TEXTURE_IDENTIFIER
//        }
    }
//    inside_vector <direction>
    hierarchy on
//    [OBJECT_MODIFIER...]
}
]]></template>

  <template id="com.wm.povclipse.template.mesh.smooth"
    name="mesh smooth_triangle"
    description="Mesh with smooth triangle object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[mesh {
    smooth_triangle {
        <Corner_1>, <Normal_1>,
        <Corner_2>, <Normal_2>,
        <Corner_3>, <Normal_3>
//        uv_vectors <uv_Corner_1>, <uv_Corner_2>, <uv_Corner_3>
//        texture { TEXTURE_IDENTIFIER }
//        texture_list {
//            TEXTURE_IDENTIFIER TEXTURE_IDENTIFIER TEXTURE_IDENTIFIER
//        }
    }
//    inside_vector <direction>
    hierarchy on
//    [OBJECT_MODIFIER...]
}
]]></template>

  <template id="com.wm.povclipse.template.polygon"
    name="polygon"
    description="Polygon object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[polygon {
    Number_Of_Points, <Point_1> <Point_2>... <Point_n>
//    [OBJECT_MODIFIER...]
}
]]></template>

  <template id="com.wm.povclipse.template.triangle"
    name="triangle"
    description="Triangle object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[triangle {
    <Corner_1>, <Corner_2>, <Corner_3>
//    [OBJECT_MODIFIER...]
}
]]></template>

  <template id="com.wm.povclipse.template.smooth_triangle"
    name="smooth_triangle"
    description="Smooth triangle object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[smooth_triangle {
    <Corner_1>, <Normal_1>, <Corner_2>,
    <Normal_2>, <Corner_3>, <Normal_3>
//    [OBJECT_MODIFIER...]
}
]]></template>

<!-- ++++++++++ Finite Patch Primitives Objects END ++++++++++ -->

<!-- ++++++++++ Infinite Solid Primitives Objects START ++++++++++ -->

  <template id="com.wm.povclipse.template.plane"
    name="plane"
    description="Plane object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[plane {
    <Normal>, Distance
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.poly"
    name="poly"
    description="Poly object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[poly {
    Order, <A1, A2, A3,... An>  // order: 2 .. 15
    sturm off
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.cubic"
    name="cubic"
    description="Cubic object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[cubic {
    <0, 0, 0, 0, 0,
     0, 0, 0, 0, 0,
     0, 0, 0, 0, 0,
     0, 0, 0, 0, 0>
    sturm off
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.quartic"
    name="quartic"
    description="Quartic object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[quartic {
    <0, 0, 0, 0, 0, 0, 0,
     0, 0, 0, 0, 0, 0, 0,
     0, 0, 0, 0, 0, 0, 0,
     0, 0, 0, 0, 0, 0, 0,
     0, 0, 0, 0, 0, 0, 0>
    sturm off
//    [OBJECT_MODIFIERS...]
}
]]></template>

  <template id="com.wm.povclipse.template.quadric"
    name="quadric"
    description="Quadric object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[quadric {
    <A,B,C>,<D,E,F>,<G,H,I>,J
//    [OBJECT_MODIFIERS...]
}
]]></template>
<!-- ++++++++++ Infinite Solid Primitives Objects END ++++++++++ -->

<!-- ++++++++++ Isosurface Object ++++++++++ -->
   <template id="com.wm.povclipse.template.isosurface"
    name="isosurface"
    description="Isosurface object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[isosurface {
    function { FUNCTION_ITEMS }
    threshold 0.0
    accuracy 0.001
    max_gradient 1.1
//    contained_by { SPHERE | BOX }
//    evaluate P0, P1, P2
//    open
//    max_trace INTEGER
//    all_intersections
//    [OBJECT_MODIFIERS...]
}
]]></template>

<!-- ++++++++++ Parametric Object ++++++++++ -->
   <template id="com.wm.povclipse.template."
    name="parametric"
    description="Parametric object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[parametric {
    function { FUNCTION_ITEMS },
    function { FUNCTION_ITEMS },
    function { FUNCTION_ITEMS }
    <u1,v1>, <u2,v2>
    accuracy 0.001
//    contained_by { SPHERE | BOX }
//    max_gradient FLOAT_VALUE
//    precompute DEPTH, VarList
  }
]]></template>

<!-- ++++++++++ Infinite Solid Primitives Objects ++++++++++ -->

<!-- ++++++++++ CSG Objects START ++++++++++ -->
<template id="com.wm.povclipse.template.union"
    name="union"
    description="CSG union template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[union {
    OBJECTS...
    split_union on
//    [OBJECT_MODIFIERS...]
}
]]></template>

<template id="com.wm.povclipse.template.intersection"
    name="intersection"
    description="CSG intersection template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[intersection {
    SOLID_OBJECTS...
//    [OBJECT_MODIFIERS...]
}
]]></template>

<template id="com.wm.povclipse.template.difference"
    name="difference"
    description="CSG difference template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[difference {
    SOLID_OBJECTS...
//    [OBJECT_MODIFIERS...]
}
]]></template>

<template id="com.wm.povclipse.template.merge"
    name="merge"
    description="CSG merge template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[merge {
    SOLID_OBJECTS...
//    [OBJECT_MODIFIERS...]
}
]]></template>
<!-- ++++++++++ CSG Objects END ++++++++++ -->

<!-- ########## O B J E C T S      E N D ########## -->

<!-- ########## L I G H T S O U R C E S      S T A R T ########## -->
  <template id="com.wm.povclipse.template.light.point"
    name="light point"
    description="Pointlight template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[light_source {
    <1000 ,1000, -1000>, rgb <1.0, 0.75, 0.0> //an orange light
//    parallel
//    shadowless
}
]]></template>

  <template id="com.wm.povclipse.template.light.spot"
    name="light spot"
    description="Spotlight template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[light_source {
    <1000 ,1000, -1000>, rgb <1.0, 0.75, 0.0> //an orange light
    spotlight
    radius    30 // degrees
    falloff   45 // degrees
    tightness  0
    point_at <0,0,0>
//    GENERAL_LIGHT_MODIFIERS
    media_interaction on
    media_attenuation off
//    parallel
//    shadowless
//    looks_like { OBJECT }
//    TRANSFORMATION
//    fade_distance Fade_Distance
//    fade_power Fade_Power
//    projected_through
}
]]></template>

  <template id="com.wm.povclipse.template.light.cylindrical"
    name="light cylindrical"
    description="Cylindrical light template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[light_source {
    <1000 ,1000, -1000>, rgb <1.0, 0.75, 0.0> //an orange light
    cylinder
    radius     0.75 // degrees
    falloff    1    // degrees
    tightness  0
    point_at <0,0,0>
//    GENERAL_LIGHT_MODIFIERS
    media_interaction on
    media_attenuation off
//    parallel
//    shadowless
//    looks_like { OBJECT }
//    TRANSFORMATION
//    fade_distance Fade_Distance
//    fade_power Fade_Power
//    projected_through
}
]]></template>

  <template id="com.wm.povclipse.template.light.area"
    name="light area"
    description="Area light template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[light_source {
    <1000 ,1000, -1000>, rgb <1.0, 0.75, 0.0> //an orange light
    area_light
    AXIS_1_VECTOR, AXIS_2_VECTOR, Size_1, Size_2
//    adaptive Adaptive // adaptive has to be >= 0
//    jitter
//    circular
//    orient

//    GENERAL_LIGHT_MODIFIERS
    media_interaction on
    media_attenuation off
//    parallel
//    shadowless
//    looks_like { OBJECT }
//    TRANSFORMATION
//    fade_distance Fade_Distance
//    fade_power Fade_Power
//    projected_through
  }
]]></template>

  <template id="com.wm.povclipse.template.light.group"
    name="light group"
    description="Light group template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[light_group {
    LIGHT_GROUP LIGHT  |
    LIGHT_GROUP OBJECT |
    LIGHT_GROUP
//    global_lights on
//    [TRANSFORMATION...]
}
]]></template>
<!-- ########## L I G H T S O U R C E S      E N D ########## -->

<!-- ########## T E X T U R E      S T A R T ########## -->
  <template id="com.wm.povclipse.template.texture.plain"
    name="texture plain"
    description="Plain texture template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[texture {
//    pigment
//    normal
//    finish
    }
]]></template>

<!-- ++++++++++ Pigment START ++++++++++ -->

  <template id="com.wm.povclipse.template.finish"
    name="finish"
    description="Finish template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[finish {
//    ambient COLOR
//    diffuse Amount
//    brilliance Amount
//    phong Amount
//    phong_size Amount
//    specular Amount
//    roughness Amount
//    metallic [Amount]
//    reflection COLOR
//    crand Amount
//    conserve_energy on | off
//    reflection { COLOR_REFLECTION_MIN
//        COLOR_REFLECTION_MAX
//        fresnel on | off
//        falloff Amount
//        exponent Amount
//        metallic Amount
//    }
//    irid { Irid_Amount 
//        thickness Amount
//        turbulence Amount
//    }
}
]]></template>

  <template id="com.wm.povclipse.template.finish.reflection"
    name="finish reflection"
    description="Reflection finish template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[reflection { COLOR_REFLECTION_MIN
//    COLOR_REFLECTION_MAX
//    fresnel on | off
//    falloff Amount
//    exponent Amount
//    metallic Amount
}
]]></template>

  <template id="com.wm.povclipse.template.finish.irid"
    name="finish irid"
    description="Irid finish template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[irid { Irid_Amount
//    thickness Amount
//    turbulence Amount
}
]]></template>

<!-- ++++++++++ Pigment END ++++++++++ -->

<!-- ########## T E X T U R E      E N D ########## -->
<!-- ########## C O L O R      S T A R T ########## -->

  <template id="com.wm.povclipse.template.color.rgb"
    name="color RGB"
    description="RGB color template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[rgb <0.0, 0.0, 0.0>]]></template>

  <template id="com.wm.povclipse.template.color.rgbf"
    name="color RGBF"
    description="Color With filter template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[rgbf <0.0, 0.0, 0.0, 0.5>]]></template>

  <template id="com.wm.povclipse.template.color.rgbt"
    name="color RGBT "
    description="Color with transmit template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[rgbt <0.0, 0.0, 0.0, 0.5>]]></template>

  <template id="com.wm.povclipse.template.color.rgbft"
    name="color RGBFT"
    description="Color with filter and transmit template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[rgbft <0.0, 0.0, 0.0, 0.5, 0.5>]]></template>
<!-- ########## C O L O R      E N D ########## -->

<!-- Template template ;-))
  <template id="com.wm.povclipse.template."
    name=""
    description=" object template"
    context="com.wm.povclipse.code.templates"
    enabled="true"
    ><![CDATA[
]]></template>
-->
</templates>