All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.enunciate.modules.docs.WhateverNode Maven / Gradle / Ivy

Go to download

The Enunciate docs module generates the Web service interface documentation.

There is a newer version: 1.31
Show newest version
package org.codehaus.enunciate.modules.docs;

/**
 * This singleton value class is used to contain "..." as a value (for documentation purposes).
 */
public final class WhateverNode extends RawValueNode {

  public final static WhateverNode instance = new WhateverNode();

  private WhateverNode() {
    super("...");
  }

  public static WhateverNode getInstance() {
    return instance;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy