Class AbstractSinglePictureManifest<T extends PictureDef>
- java.lang.Object
-
- com._1c.g5.v8.dt.platform.pictures.AbstractSinglePictureManifest<T>
-
- All Implemented Interfaces:
IPictureManifest
- Direct Known Subclasses:
AbsSinglePictureManifest
,GraphicalSchemeSinglePictureManifest
,LayoutSinglePictureManifest
,MdSinglePictureManifest
,PlatformSinglePictureManifest
public abstract class AbstractSinglePictureManifest<T extends PictureDef> extends Object implements IPictureManifest
Abstract implementation ofIPictureManifest
for single picture
-
-
Field Summary
-
Fields inherited from interface com._1c.g5.v8.dt.platform.pictures.IPictureManifest
UNRESOLVED_PICTURE_MANIFEST
-
-
Constructor Summary
Constructors Constructor Description AbstractSinglePictureManifest(T picture)
Create instance ofAbstractSinglePictureManifest
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description CompositeId
getCompositeId()
The pictureCompositeId
PictureDirectionVariant
getDirection(IPictureManifestQuery query)
The picturePictureDirectionVariant
protected abstract Optional<InputStream>
getInputStream()
ReadInputStream
from current picture.Optional<InputStream>
getInputStream(IPictureManifestQuery query)
The pictureInputStream
protected T
getPicture()
Source picture instanceboolean
isTemplate(IPictureManifestQuery query)
Is picture is template
-
-
-
Constructor Detail
-
AbstractSinglePictureManifest
public AbstractSinglePictureManifest(T picture)
Create instance ofAbstractSinglePictureManifest
- Parameters:
picture
- the source picture, cannot benull
-
-
Method Detail
-
getCompositeId
public CompositeId getCompositeId()
Description copied from interface:IPictureManifest
The pictureCompositeId
- Specified by:
getCompositeId
in interfaceIPictureManifest
- Returns:
- the
CompositeId
ornull
if picture without id.
-
isTemplate
public boolean isTemplate(IPictureManifestQuery query)
Description copied from interface:IPictureManifest
Is picture is template- Specified by:
isTemplate
in interfaceIPictureManifest
- Parameters:
query
- theIPictureManifestQuery
, cannot benull
- Returns:
true
if picture by given query is template,false
in otherwise
-
getDirection
public PictureDirectionVariant getDirection(IPictureManifestQuery query) throws IOException
Description copied from interface:IPictureManifest
The picturePictureDirectionVariant
- Specified by:
getDirection
in interfaceIPictureManifest
- Parameters:
query
- theIPictureManifestQuery
, cannot benull
- Returns:
- first suitable
PictureDirectionVariant
by the following algorithm:Picture variant selection in LTR-interface (in order of priority):
- Left to right
- Left to right, can flip
- Right to left, can flip
- Any
- Right to left
Picture variant selection in RTL-interface (in order of priority):
- Right to left
- Right to left, can flip
- Left to right, can flip
- Any
- Left to right
- Throws:
IOException
- if there is a problem to read the picture content
-
getInputStream
public Optional<InputStream> getInputStream(IPictureManifestQuery query) throws IOException
Description copied from interface:IPictureManifest
The pictureInputStream
The picture may be cropped if it contains enough information for this purpose.
- Specified by:
getInputStream
in interfaceIPictureManifest
- Parameters:
query
- theIPictureManifestQuery
, cannot benull
- Returns:
- the
InputStream
of picture by given query, nevernull
- Throws:
IOException
- if there is a problem to read the picture content
-
getPicture
protected T getPicture()
Source picture instance- Returns:
- the picture instance, never
null
-
getInputStream
protected abstract Optional<InputStream> getInputStream() throws IOException
ReadInputStream
from current picture.- Returns:
InputStream
of picture, optional, nevernull
- Throws:
IOException
- if there is a problem obtaining an read picture content or manifest
-
-