plugin.xml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?eclipse version="3.4"?>
  3. <plugin>
  4. <extension
  5. point="org.eclipse.ui.handlers">
  6. <handler
  7. class="de.itemis.xtext.utils.jface.internal.handlers.ContentAssistHandler"
  8. commandId="org.eclipse.ui.edit.text.contentAssist.proposals">
  9. <activeWhen>
  10. <iterate>
  11. <test
  12. property="de.itemis.xtext.utils.jface.xtextStyledText.isFocused">
  13. </test>
  14. </iterate>
  15. </activeWhen>
  16. </handler>
  17. </extension>
  18. <extension
  19. point="org.eclipse.core.expressions.propertyTesters">
  20. <propertyTester
  21. class="de.itemis.xtext.utils.jface.internal.propertytester.XtextStyledTextPropertyTester"
  22. id="de.itemis.xtext.utils.jface.xtextStyledTextPropertyTester"
  23. namespace="de.itemis.xtext.utils.jface.xtextStyledText"
  24. properties="isFocused"
  25. type="java.lang.Object">
  26. </propertyTester>
  27. </extension>
  28. </plugin>