vcloud-director 1.5: fixing some javadoc problems

This commit is contained in:
Adam Lowe 2012-03-06 16:44:45 +00:00
parent 8473f561fd
commit 335e14f505
4 changed files with 54 additions and 60 deletions

View File

@ -153,24 +153,24 @@ public class CaptureVAppParams
* Gets the value of the section property. * Gets the value of the section property.
* *
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@code <}{@link Section> }{@code >} * {@link Section }
* {@code <}{@link VirtualHardwareSection > }{@code >} * {@link VirtualHardwareSection }
* {@code <}{@link LeaseSettingsSection> }{@code >} * {@link LeaseSettingsSection }
* {@code <}{@link EulaSection> }{@code >} * {@link EulaSection }
* {@code <}{@link RuntimeInfoSection> }{@code >} * {@link RuntimeInfoSection }
* {@code <}{@link AnnotationSection> }{@code >} * {@link AnnotationSection }
* {@code <}{@link DeploymentOptionSection > }{@code >} * {@link DeploymentOptionSection }
* {@code <}{@link StartupSection> }{@code >} * {@link StartupSection }
* {@code <}{@link ResourceAllocationSection> }{@code >} * {@link ResourceAllocationSection }
* {@code <}{@link NetworkConnectionSection> }{@code >} * {@link NetworkConnectionSection }
* {@code <}{@link CustomizationSection> }{@code >} * {@link CustomizationSection }
* {@code <}{@link ProductSection > }{@code >} * {@link ProductSection }
* {@code <}{@link GuestCustomizationSection> }{@code >} * {@link GuestCustomizationSection }
* {@code <}{@link OperatingSystemSection > }{@code >} * {@link OperatingSystemSection }
* {@code <}{@link NetworkConfigSection> }{@code >} * {@link NetworkConfigSection }
* {@code <}{@link NetworkSection > }{@code >} * {@link NetworkSection }
* {@code <}{@link DiskSection > }{@code >} * {@link DiskSection }
* {@code <}{@link InstallSection> }{@code >} * {@link InstallSection }
*/ */
public Set<? extends Section<?>> getSections() { public Set<? extends Section<?>> getSections() {
return Collections.unmodifiableSet(this.sections); return Collections.unmodifiableSet(this.sections);

View File

@ -113,24 +113,24 @@ public class InstantiationParams {
* Gets the value of the section property. * Gets the value of the section property.
* <p/> * <p/>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@code <}{@link SectionType }{@code >} * {@link SectionType }
* {@code <}{@link VirtualHardwareSection }{@code >} * {@link VirtualHardwareSection }
* {@code <}{@link LeaseSettingsSection }{@code >} * {@link LeaseSettingsSection }
* {@code <}{@link EulaSection }{@code >} * {@link EulaSection }
* {@code <}{@link RuntimeInfoSection }{@code >} * {@link RuntimeInfoSection }
* {@code <}{@link AnnotationSection }{@code >} * {@link AnnotationSection }
* {@code <}{@link DeploymentOptionSection }{@code >} * {@link DeploymentOptionSection }
* {@code <}{@link StartupSection }{@code >} * {@link StartupSection }
* {@code <}{@link ResourceAllocationSection }{@code >} * {@link ResourceAllocationSection }
* {@code <}{@link NetworkConnectionSection }{@code >} * {@link NetworkConnectionSection }
* {@code <}{@link CustomizationSection }{@code >} * {@link CustomizationSection }
* {@code <}{@link ProductSection }{@code >} * {@link ProductSection }
* {@code <}{@link GuestCustomizationSection }{@code >} * {@link GuestCustomizationSection }
* {@code <}{@link org.jclouds.ovf.OperatingSystemSection }{@code >} * {@link org.jclouds.ovf.OperatingSystemSection }
* {@code <}{@link NetworkConfigSection }{@code >} * {@link NetworkConfigSection }
* {@code <}{@link NetworkSection }{@code >} * {@link NetworkSection }
* {@code <}{@link DiskSection }{@code >} * {@link DiskSection }
* {@code <}{@link InstallSection }{@code >} * {@link InstallSection }
*/ */
public Set<? extends SectionType<?>> getSections() { public Set<? extends SectionType<?>> getSections() {
return Collections.unmodifiableSet(this.sections); return Collections.unmodifiableSet(this.sections);

View File

@ -308,24 +308,24 @@ public class VAppTemplate extends ResourceEntityType<VAppTemplate> {
* Gets the value of the section property. * Gets the value of the section property.
* <p/> * <p/>
* Objects of the following type(s) are allowed in the list * Objects of the following type(s) are allowed in the list
* {@code <}{@link SectionType }{@code >} * {@link SectionType }
* {@code <}{@link VirtualHardwareSection }{@code >} * {@link VirtualHardwareSection }
* {@code <}{@link LeaseSettingsSection }{@code >} * {@link LeaseSettingsSection }
* {@code <}{@link EulaSection }{@code >} * {@link EulaSection }
* {@code <}{@link RuntimeInfoSection }{@code >} * {@link RuntimeInfoSection }
* {@code <}{@link AnnotationSection }{@code >} * {@link AnnotationSection }
* {@code <}{@link DeploymentOptionSection }{@code >} * {@link DeploymentOptionSection }
* {@code <}{@link StartupSection }{@code >} * {@link StartupSection }
* {@code <}{@link ResourceAllocationSection }{@code >} * {@link ResourceAllocationSection }
* {@code <}{@link NetworkConnectionSection }{@code >} * {@link NetworkConnectionSection }
* {@code <}{@link CustomizationSection }{@code >} * {@link CustomizationSection }
* {@code <}{@link ProductSection }{@code >} * {@link ProductSection }
* {@code <}{@link GuestCustomizationSection }{@code >} * {@link GuestCustomizationSection }
* {@code <}{@link OperatingSystemSection }{@code >} * {@link OperatingSystemSection }
* {@code <}{@link NetworkConfigSection }{@code >} * {@link NetworkConfigSection }
* {@code <}{@link NetworkSection }{@code >} * {@link NetworkSection }
* {@code <}{@link DiskSection }{@code >} * {@link DiskSection }
* {@code <}{@link InstallSection }{@code >} * {@link InstallSection }
*/ */
public Set<? extends SectionType<?>> getSections() { public Set<? extends SectionType<?>> getSections() {
return Collections.unmodifiableSet(this.sections); return Collections.unmodifiableSet(this.sections);

View File

@ -38,9 +38,6 @@ import com.google.common.collect.Sets;
*/ */
public abstract class BaseEnvelope<V extends BaseVirtualSystem<V>, E extends BaseEnvelope<V, E>> { public abstract class BaseEnvelope<V extends BaseVirtualSystem<V>, E extends BaseEnvelope<V, E>> {
/**
* {@inheritDoc}
*/
public abstract Builder<V, E> toBuilder(); public abstract Builder<V, E> toBuilder();
public static abstract class Builder<V extends BaseVirtualSystem<V>, E extends BaseEnvelope<V, E>> { public static abstract class Builder<V extends BaseVirtualSystem<V>, E extends BaseEnvelope<V, E>> {
@ -109,9 +106,6 @@ public abstract class BaseEnvelope<V extends BaseVirtualSystem<V>, E extends Bas
return this; return this;
} }
/**
* {@inheritDoc}
*/
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public abstract E build() ; public abstract E build() ;