Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[udig-devel] FeatureEditor HowTo

Hello,

Does anyone can explain me how to use the featureEditor extension point? I'm trying to register an editor to a featureType named "zipcodes". At the moment my editor seems to be registered to all featureType...
This is my plugin.xml declaration :
    ...
   <extension
         point="net.refractions.udig.project.ui.featureEditor">
      <editor
            icon="icons/eview16/view_obj.gif"
            id="net.ingencys.udig.feature.editor.default"
            name="%name"
            viewId="net.ingencys.udig.feature.editor.default">
         <featureType>
            <typeName
                  name="zipcodes"
                  namespace="zipcodes"/>
         </featureType>
      </editor>
   </extension>
    ...

I think the typeName declaration is incorrect. What should be the "name" and "namespace" values??

Thanks,

Sebastien

Back to the top