org.jvnet.hk2.config.Element类的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(3.7k)|赞(0)|评价(0)|浏览(316)

本文整理了Java中org.jvnet.hk2.config.Element类的一些代码示例,展示了Element类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Element类的具体详情如下:
包路径:org.jvnet.hk2.config.Element
类名称:Element

Element介绍

暂无

代码示例

代码示例来源:origin: javaee/glassfish

  1. @NotNull
  2. @Element
  3. public WebContainerAvailability getWebContainerAvailability();
  4. void setWebContainerAvailability(WebContainerAvailability v);

代码示例来源:origin: javaee/glassfish

  1. private ElementMethodGenerator(Property p, Element e) {
  2. super("element_", injectElementMethod, p, e.value());
  3. this.e = e;
  4. }

代码示例来源:origin: javaee/glassfish

  1. private boolean _isKey() {
  2. Element e = getAnnotation(Element.class);
  3. if(e!=null && e.key()) return true;
  4. Attribute a = getAnnotation(Attribute.class);
  5. return a != null && a.key();
  6. }

代码示例来源:origin: javaee/glassfish

  1. /**
  2. * Gets the value of the property property.
  3. * <p/>
  4. * This accessor method returns a reference to the live list,
  5. * not a snapshot. Therefore any modification you make to the
  6. * returned list will be present inside the JAXB object.
  7. * This is why there is not a <CODE>set</CODE> method for the property property.
  8. * <p/>
  9. * <p/>
  10. * For example, to add a new item, do as follows:
  11. * <pre>
  12. * getProperty().add(newItem);
  13. * </pre>
  14. * <p/>
  15. * <p/>
  16. * <p/>
  17. * Objects of the following type(s) are allowed in the list
  18. * {@link Property }
  19. * @return the property list
  20. */
  21. @XmlElement(name="property")
  22. @Element("property")
  23. List<Property> getProperty();
  24. Property addProperty(Property property);

代码示例来源:origin: org.glassfish.main.common/amx-core

  1. public static DescriptorSupport descriptor(final Element e)
  2. {
  3. final DescriptorSupport d = new DescriptorSupport();
  4. d.setField(DESC_KIND, Element.class.getName());
  5. d.setField(DESC_KEY, e.key());
  6. d.setField(DESC_REQUIRED, e.required());
  7. d.setField(DESC_REFERENCE, e.reference());
  8. d.setField(DESC_VARIABLE_EXPANSION, e.variableExpansion());
  9. return d;
  10. }

代码示例来源:origin: javaee/glassfish

  1. protected boolean isRequired() {
  2. return e.required();
  3. }

代码示例来源:origin: javaee/glassfish

  1. protected boolean isReference() {
  2. return e.reference();
  3. }

代码示例来源:origin: javaee/glassfish

  1. @Element
  2. public EjbContainerAvailability getEjbContainerAvailability();

代码示例来源:origin: org.glassfish.main.common/amx-core

  1. public boolean required()
  2. {
  3. return mElement.required();
  4. }

代码示例来源:origin: eclipse-ee4j/glassfish

  1. protected boolean isReference() {
  2. return e.reference();
  3. }

代码示例来源:origin: org.glassfish.main.admin/config-api

  1. /**
  2. * Gets the value of the monitoringService property.
  3. *
  4. * @return possible object is
  5. * {@link MonitoringService }
  6. */
  7. @Element()
  8. @NotNull
  9. MonitoringService getMonitoringService();

代码示例来源:origin: javaee/glassfish

  1. @Element("*")
  2. List<GenericContainer> getExtensions();

代码示例来源:origin: javaee/glassfish

  1. protected boolean isAllElementMatch() {
  2. return e.value().equals("*");
  3. }
  4. }

代码示例来源:origin: org.glassfish.main.common/amx-core

  1. public boolean key()
  2. {
  3. return mElement.key();
  4. }

代码示例来源:origin: eclipse-ee4j/glassfish

  1. protected boolean isRequired() {
  2. return e.required();
  3. }

代码示例来源:origin: org.glassfish.main.admin/config-api

  1. /**
  2. * Gets the value of the accessLog property.
  3. *
  4. * @return possible object is
  5. * {@link AccessLog }
  6. */
  7. @Element
  8. @NotNull
  9. AccessLog getAccessLog();

代码示例来源:origin: javaee/glassfish

  1. @Element
  2. GenericConfig getGenericConfig();
  3. void setGenericConfig(GenericConfig genericConfig);

代码示例来源:origin: javaee/glassfish

  1. String en = e.value();
  2. if(en.length()>0) {
  3. prop = elements.get(en);

代码示例来源:origin: eclipse-ee4j/glassfish

  1. private boolean _isKey() {
  2. Element e = getAnnotation(Element.class);
  3. if(e!=null && e.key()) return true;
  4. Attribute a = getAnnotation(Attribute.class);
  5. return a != null && a.key();
  6. }

代码示例来源:origin: org.glassfish.main.admin/config-api

  1. /**
  2. * Gets the value of the groupManagementService property.
  3. *
  4. * @return possible object is
  5. * {@link GroupManagementService }
  6. * @since glassfish v3.1
  7. */
  8. @Element //(required=true)
  9. @NotNull
  10. FailureDetection getFailureDetection();

相关文章