/** \brief Returns true if feature and/or attributes are valid.
* \param[in] theFeature the validated feature.
* \param[in] theArguments the arguments in the configuration file for this validator.
+ * \param[out] theError error message.
* \returns true if feature is valid.
*/
GEOMVALIDATORS_EXPORT virtual bool isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
public:
GEOMVALIDATORS_EXPORT GeomValidators_ConstructionComposite() {}
//! returns true if attribute is valid
- //! \param theAttribute the checked attribute
- //! \param theArguments arguments of the attribute
+ //! \param[in] theAttribute the checked attribute
+ //! \param[in] theArguments arguments of the attribute
+ //! \param[out] theError error message.
GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
const std::list<std::string>& theArguments,
std::string& theError) const;
return false;
}
+/** \class IsEqual
+ * \ingroup Validators
+ * \brief Auxiliary class used in std::find_if
+ */
class IsEqual {
AttributePtr myAttribute;
public:
+ /// Constructor
IsEqual(const AttributePtr& theAttribute) : myAttribute(theAttribute) {}
+ /// \return true in case if AttributePtr is equal with myAttribute
bool operator()(const AttributePtr& theAttribute) {
return isEqualAttributes(myAttribute, theAttribute);
}
/** \brief Returns true if feature and/or attributes are valid.
* \param[in] theFeature the validated feature.
* \param[in] theArguments the arguments in the configuration file for this validator.
+ * \param[out] theError error message.
* \returns true if feature is valid.
*/
GEOMVALIDATORS_EXPORT virtual bool isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
public:
/// returns True if the attribute is valid. It checks whether the feature of the attribute
/// does not contain a selection attribute filled with the same shape
- /// \param theAttribute an attribute to check
- /// \param theArguments a filter parameters
+ /// \param[in] theAttribute an attribute to check
+ /// \param[in] theArguments a filter parameters
+ /// \param[out] theError error message.
MODELAPI_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
const std::list<std::string>& theArguments,
std::string& theError) const;
public:
GEOMVALIDATORS_EXPORT GeomValidators_Face() {}
//! returns true if attribute is valid
- //! \param theAttribute the checked attribute
- //! \param theArguments arguments of the attribute
+ //! \param[in] theAttribute the checked attribute
+ //! \param[in] theArguments arguments of the attribute
+ //! \param[out] theError error message.
GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
const std::list<std::string>& theArguments,
std::string& theError) const;
{
public:
//! returns true if attribute is valid
- //! \param theAttribute the checked attribute
- //! \param theArguments arguments of the attribute
+ //! \param[in] theAttribute the checked attribute
+ //! \param[in] theArguments arguments of the attribute
+ //! \param[out] theError error message.
GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
const std::list<std::string>& theArguments,
std::string& theError) const;
/** \brief Returns true if feature and/or attributes are valid.
* \param[in] theFeature the validated feature.
* \param[in] theArguments the arguments in the configuration file for this validator.
+ * \param[out] theError error message.
* \returns true if feature is valid.
*/
GEOMVALIDATORS_EXPORT virtual bool isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,
//! Constructor for only one instance per application: will register the validator
GeomValidators_Positive();
//! returns true if attribute is valid
- //! \param theAttribute the checked attribute
- //! \param theArguments arguments of the attribute
+ //! \param[in] theAttribute the checked attribute
+ //! \param[in] theArguments arguments of the attribute
+ //! \param[out] theError error message.
GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
const std::list<std::string>& theArguments,
std::string& theError) const;
class GeomValidators_ShapeType : public ModelAPI_AttributeValidator
{
public:
- // the edge type
+ /// Type of shape
enum TypeOfShape
{
Empty,
public:
GEOMVALIDATORS_EXPORT GeomValidators_ShapeType() {}
//! Returns true if attribute has shape type listed in the parameter arguments
- //! \param theAttribute the checked attribute
- //! \param theArguments arguments of the attribute
+ //! \param[in] theAttribute the checked attribute
+ //! \param[in] theArguments arguments of the attribute
+ //! \param[out] theError error message.
GEOMVALIDATORS_EXPORT virtual bool isValid(const AttributePtr& theAttribute,
const std::list<std::string>& theArguments,
std::string& theError) const;
static TypeOfShape shapeType(const std::string& theType);
/// Returns true if the attibute's object type satisfies the argument value
- /// \param theAttribute a checked attribute
- /// \param theArgument a parameter
+ /// \param[in] theAttribute a checked attribute
+ /// \param[in] theShapeType a type of shape
+ /// \param[out] theError error message.
bool isValidAttribute(const AttributePtr& theAttribute,
const TypeOfShape theShapeType,
std::string& theError) const;
/// Returns true if the attibute's object type satisfies the argument value
- /// \param theAttribute a checked object
- /// \param theShapeType a shape type
+ /// \param[in] theObject a checked object
+ /// \param[in] theShapeType a shape type
+ /// \param[out] theError error message.
bool isValidObject(const ObjectPtr& theObject,
const TypeOfShape theShapeType,
std::string& theError) const;
/// Returns true if the attibute's object type satisfies the argument value
- /// \param theShape a checked shape
- /// \param theShapeType a shape type
+ /// \param[in] theShape a checked shape
+ /// \param[in] theShapeType a shape type
+ /// \param[out] theError error message.
bool isValidShape(const GeomShapePtr theShape,
const TypeOfShape theShapeType,
std::string& theError) const;
/** \brief Returns true if feature and/or attributes are valid.
* \param[in] theFeature the validated feature.
* \param[in] theArguments the arguments in the configuration file for this validator.
+ * \param[out] theError error message.
* \return true if feature is valid.
*/
GEOMVALIDATORS_EXPORT virtual bool isValid(const std::shared_ptr<ModelAPI_Feature>& theFeature,