OwlSymmetricProperty.js
var BaseProperty = require("../BaseProperty");
module.exports = (function (){
var o = function ( graph ){
BaseProperty.apply(this, arguments);
this.attributes(["symmetric"])
.styleClass("symmetricproperty")
.type("owl:SymmetricProperty");
};
o.prototype = Object.create(BaseProperty.prototype);
o.prototype.constructor = o;
return o;
}());