Package com._1c.g5.v8.dt.form.pictures
Class PictureFqnUtil
java.lang.Object
com._1c.g5.v8.dt.form.pictures.PictureFqnUtil
Utilities to manipulate picture FQNs.
-
Method Summary
Modifier and TypeMethodDescriptionstatic StringbuildFormPictureBlobFqn(FormPicture picture) Builds a form picture blob FQN.static StringbuildFormPictureBlobFqn(String formFqn, String item, String feature) Builds a form picture blob FQN.static PictureFqnPartsExtracts parts from an FQN belonging to a form picture blob.static booleanChecks if the specified FQN belongs to a form picture blob.static booleanisFormPictureBlobFqn(String fqn, String formFqn) Checks if the specified FQN belongs to a picture blob in the specified form.
-
Method Details
-
buildFormPictureBlobFqn
Builds a form picture blob FQN.- Parameters:
picture- The form picture. May not benull.- Returns:
- the picture blob FQN. Can be
nullif picture is not contained inFormItem
-
buildFormPictureBlobFqn
Builds a form picture blob FQN.- Parameters:
graphicalSchemeFqn- The form FQN. May not benull.item- The form item. May not benull.feature- The form item feature. May not benull.- Returns:
- the picture blob FQN. Never
null.
-
isFormPictureBlobFqn
Checks if the specified FQN belongs to a form picture blob.- Parameters:
fqn- The FQN to check. May not benull.- Returns:
trueif the FQN belongs to a form picture blob,falseotherwise.
-
isFormPictureBlobFqn
Checks if the specified FQN belongs to a picture blob in the specified form.- Parameters:
fqn- The FQN to check. May not benull.formFqn- The form FQN. May not benull.- Returns:
trueif the specified FQN belongs to a picture blob in the specified form,falseotherwise.
-
extractFormPictureBlobFqnParts
Extracts parts from an FQN belonging to a form picture blob.- Parameters:
fqn- The FQN to extract parts from. May not benull.- Returns:
- the extracted parts. Never
null.
-