
microsoft.exchange.webservices.data.GenericItemAttachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exchange-ws-api Show documentation
Show all versions of exchange-ws-api Show documentation
The source came from http://archive.msdn.microsoft.com/ewsjavaapi
Support for Maven has been added.
/**************************************************************************
* copyright file="GenericItemAttachment.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the GenericItemAttachment.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* Represents a strongly typed item attachment.
*
* @param
* Item type.
*/
public final class GenericItemAttachment extends
ItemAttachment {
/**
* * Initializes a new instance of the GenericItemAttachment class.
*
* @param owner
* the owner
*/
protected GenericItemAttachment(Item owner) {
super(owner);
}
/**
* * Gets the item associated with the attachment.
*
* @return the t item
*/
public TItem getTItem() {
return (TItem)super.getItem();
}
/**
* Sets the t item.
*
* @param value
* the new t item
*/
protected void setTItem(TItem value) {
super.setItem(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy