From f85cc6f165aaa74fb2fa7076979672fdf3cb2bff Mon Sep 17 00:00:00 2001
From: Andy
Date: Mon, 28 Aug 2017 07:17:18 -0700
Subject: [PATCH] yfiles: Fix compile errors (#19216)
---
types/yfiles/index.d.ts | 3070 +++++++++++++++++++--------------------
1 file changed, 1535 insertions(+), 1535 deletions(-)
diff --git a/types/yfiles/index.d.ts b/types/yfiles/index.d.ts
index d4ae30f08d..a3593bdc76 100644
--- a/types/yfiles/index.d.ts
+++ b/types/yfiles/index.d.ts
@@ -158,15 +158,15 @@ declare namespace yfiles{
* var MyList = yfiles.lang.Class('MyList', {
* $extends: my.AbstractList,
* $with: [my.Iterable, my.Collection],
- *
+ *
* constructor: function() { // the constructor function
* },
- *
+ *
* add: function(obj) { ... },
* size: { // transformed into a property
* 'get': function() { return ...; }
* },
- *
+ *
* $static: {
* create: function() { ... }
* }
@@ -176,7 +176,7 @@ declare namespace yfiles{
* list.add("hello");
* list.size === 1; // true
*
- *
+ *
*
* The constructor property can be either a function (in case of a single constructor) or an object that is transformed
* into named constructors.
@@ -197,7 +197,7 @@ declare namespace yfiles{
* myrect = new Rect.FromPoint({x: 10, y: 10}, 50, 50);
* myrect instanceof Rect; // true
*
- *
+ *
*
* Named constructors can call other constructors and can be written like any other constructor, i.e. this will be a new
* instance of the class that is being constructed.
@@ -211,7 +211,7 @@ declare namespace yfiles{
*
* Rect.$super.toString.call(this);
*
- *
+ *
*
* If you do not specify the parent class of a new class, then {@link yfiles.lang.Object} will be used as its base type. The parent
* class of {@link yfiles.lang.Object} is the standard JavaScript Object.prototype.
@@ -285,13 +285,13 @@ declare namespace yfiles{
* //yfiles.lang.Class.injectInterfaces(myHitTestable, [yfiles.drawing.IHitTestable.$class, yfiles.support.ILookup.$class]);
* //As well as using a variable number of arguments, such as:
* //yfiles.lang.Class.injectInterfaces(myHitTestable, yfiles.drawing.IHitTestable, yfiles.support.ILookup);
- *
+ *
* //This is true now:
* yfiles.drawing.IHitTestable.isInstance(myHitTestable);
* //And the object can be used where an interface instance is expected:
* graphEditorInputMode.clickInputMode.validClickHitTestable = myHitTestable;
*
- *
+ *
*
* It is also possible to modify an object prototype, e.g. in TypeScript: Class definition:
*
@@ -302,7 +302,7 @@ declare namespace yfiles{
* }
* }
*
- *
+ *
*
* Usage:
*
@@ -317,7 +317,7 @@ declare namespace yfiles{
* //And the object can be used where an interface instance is expected:
* graphEditorInputMode.clickInputMode.validClickHitTestable = myHitTestable;
*
- *
+ *
* @param obj The object to modify.
* @param interfaces Array or variable number of {@link }s, {@link } objects of interfaces or fully qualified string
* names of interfaces.
@@ -439,7 +439,7 @@ declare namespace yfiles{
/**
* This methods creates an instance of the struct in which all of its values are set to their default values without using
* any of its constructors.
- * @returns
+ * @returns
* @static
*/
static createDefault():any;
@@ -478,7 +478,7 @@ declare namespace yfiles{
* });
* if(state === RequestState.FAILED) { ... }
*
- *
+ *
* @class
*/
export interface Enum extends yfiles.lang.Object{}
@@ -691,7 +691,7 @@ declare namespace yfiles{
* var attr = yfiles.lang.Attribute.getCustomAttribute(MyClass.$class, MyAttribute.$class);
* console.log(attr.message + ' ' + attr.recipient); // 'hello world'
*
- *
+ *
*
* Even though MyAttribute is invoked at the definition of MyClass, no attribute is created until the reflection API is
* used (in the above example: using getCustomAttribute).
@@ -908,7 +908,7 @@ declare namespace yfiles{
/**
* Compares this object to the given object of the same type.
* @param obj The object to compare this to.
- * @returns
+ * @returns
*
* - -1: this is less than
obj
* - 0: this is equal to
obj
@@ -961,9 +961,9 @@ declare namespace yfiles{
*/
constructor(ticks:number);
/**
- *
+ *
* @param obj
- * @returns
+ * @returns
*/
compareTo(obj:any):number;
/**
@@ -1131,12 +1131,12 @@ declare namespace yfiles{
*/
constructor(options?:{entries?:Array});
/**
- *
+ *
* @param item
*/
add(item:yfiles.collections.MapEntry):void;
/**
- *
+ *
*/
clear():void;
/**
@@ -1146,69 +1146,69 @@ declare namespace yfiles{
*/
containsValue(value:TValue):boolean;
/**
- *
+ *
* @param array
* @param arrayIndex
*/
copyTo(array:yfiles.collections.MapEntry[],arrayIndex:number):void;
/**
- *
+ *
* @param key
- * @returns
+ * @returns
*/
delete(key:TKey):boolean;
/**
- *
+ *
* @param key
- * @returns
+ * @returns
*/
get(key:TKey):TValue;
/**
- *
- * @returns
+ *
+ * @returns
*/
getEnumerator():yfiles.collections.IEnumerator>;
/**
- *
+ *
* @param key
- * @returns
+ * @returns
*/
has(key:TKey):boolean;
/**
- *
+ *
* @param item
- * @returns
+ * @returns
*/
includes(item:yfiles.collections.MapEntry):boolean;
/**
- *
+ *
* @param item
- * @returns
+ * @returns
*/
remove(item:yfiles.collections.MapEntry):boolean;
/**
- *
+ *
* @param key
* @param value
*/
set(key:TKey,value:TValue):void;
/**
- *
+ *
* @type {number}
*/
size:number;
/**
- *
+ *
* @type {boolean}
*/
isReadOnly:boolean;
/**
- *
+ *
* @type {yfiles.collections.ICollection.}
*/
keys:yfiles.collections.ICollection;
/**
- *
+ *
* @type {yfiles.collections.ICollection.}
*/
values:yfiles.collections.ICollection;
@@ -1301,7 +1301,7 @@ declare namespace yfiles{
* Getter: if there is no key/value pair with the given key in this dictionary null will be returned.
*
* @param key
- * @returns
+ * @returns
* @see yfiles.collections.IMap.#set
* @abstract
*/
@@ -1352,9 +1352,9 @@ declare namespace yfiles{
*/
export interface IEnumerable extends yfiles.lang.Object{
/**
- *
+ *
* @param enumerable
- * @returns
+ * @returns
*/
concat?(enumerable:yfiles.collections.IEnumerable):yfiles.collections.IEnumerable;
/**
@@ -1560,7 +1560,7 @@ declare namespace yfiles{
* var current = e.current;
* }
*
- *
+ *
* Type parameter T.
* @interface
* @template T
@@ -1702,7 +1702,7 @@ declare namespace yfiles{
*/
constructor(options?:{items?:Array});
/**
- *
+ *
* @param item
*/
add(item:T):void;
@@ -1723,11 +1723,11 @@ declare namespace yfiles{
*/
binarySearch(item:T,comparer:yfiles.collections.IComparer):number;
/**
- *
+ *
*/
clear():void;
/**
- *
+ *
* @param array
* @param arrayIndex
*/
@@ -1757,38 +1757,38 @@ declare namespace yfiles{
*/
static fromArray(array:T[]):yfiles.collections.List;
/**
- *
+ *
* @param index
- * @returns
+ * @returns
*/
get(index:number):T;
/**
- *
- * @returns
+ *
+ * @returns
*/
getEnumerator():yfiles.collections.IEnumerator;
/**
- *
+ *
* @param item
- * @returns
+ * @returns
*/
includes(item:T):boolean;
/**
- *
+ *
* @param item
- * @returns
+ * @returns
*/
indexOf(item:T):number;
/**
- *
+ *
* @param index
* @param item
*/
insert(index:number,item:T):void;
/**
- *
+ *
* @param item
- * @returns
+ * @returns
*/
remove(item:T):boolean;
/**
@@ -1799,7 +1799,7 @@ declare namespace yfiles{
*/
removeAll(match:(obj:T)=>boolean):number;
/**
- *
+ *
* @param index
*/
removeAt(index:number):void;
@@ -1814,7 +1814,7 @@ declare namespace yfiles{
*/
reverse():void;
/**
- *
+ *
* @param index
* @param value
*/
@@ -1839,12 +1839,12 @@ declare namespace yfiles{
*/
toArray():T[];
/**
- *
+ *
* @type {number}
*/
size:number;
/**
- *
+ *
* @type {boolean}
*/
isReadOnly:boolean;
@@ -1863,7 +1863,7 @@ declare namespace yfiles{
* Compares two objects of type T.
* @param x The first object.
* @param y The second object.
- * @returns
+ * @returns
*
* - -1:
x is less than y
* - 0:
x is equal to y
@@ -1912,7 +1912,7 @@ declare namespace yfiles{
copyTo(array:T[],arrayIndex:number):void;
/**
* Returns an enumerator over the elements in this collection.
- * @returns
+ * @returns
*/
getEnumerator():yfiles.collections.IEnumerator;
/**
@@ -2065,18 +2065,18 @@ declare namespace yfiles{
*/
clear():void;
/**
- *
+ *
* @param key
*/
delete(key:K):void;
/**
- *
+ *
* @param key
- * @returns
+ * @returns
*/
get(key:K):V;
/**
- *
+ *
* @param key
* @param value
*/
@@ -2218,14 +2218,14 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
* @param i
- * @returns
+ * @returns
*/
get(i:number):T;
/**
- *
- * @returns
+ *
+ * @returns
*/
getEnumerator():yfiles.collections.IEnumerator;
/**
@@ -2234,7 +2234,7 @@ declare namespace yfiles{
*/
backingEnumerable:yfiles.collections.IEnumerable;
/**
- *
+ *
* @type {number}
*/
size:number;
@@ -2500,7 +2500,7 @@ declare namespace yfiles{
* </PropertyTypeName>
* </ParentObjectName.Name>
*
- *
+ *
*
* Default value is true.
*
@@ -2589,7 +2589,7 @@ declare namespace yfiles{
*
* {x:Static myNSDeclarationPrefix:ContainingType.ContainedTypeSingleton}
*
- *
+ *
* @type {Array.}
*/
singletonContainers:yfiles.lang.Class[];
@@ -3707,7 +3707,7 @@ declare namespace yfiles{
flushDocument():void;
/**
* Gets a text representation of all content that has been written so far.
- * @returns
+ * @returns
* @abstract
*/
getXmlString():string;
@@ -5104,7 +5104,7 @@ declare namespace yfiles{
*
* This method is called for each read or write process.
*
- * @returns
+ * @returns
* @protected
*/
createXamlNameMapper():yfiles.graphml.IXamlNameMapper;
@@ -5113,7 +5113,7 @@ declare namespace yfiles{
*
* This method is called for each write process.
*
- * @returns
+ * @returns
* @protected
*/
createXamlPrefixMapper():yfiles.graphml.IXamlPrefixMapper;
@@ -5476,7 +5476,7 @@ declare namespace yfiles{
* @param document The XML document. Note: If you are using Internet Explorer 9 and {@link }s to retrieve the document, you may not use
* the value from the {@link #responseXML} property. Please parse {@link #responseText} instead and use the
* result. For further reference see {@link http://msdn.microsoft.com/en-us/library/ie/hh180177.aspx}.
- * @returns
+ * @returns
* @throws {Stubs.Exceptions.ArgumentError} document is null.
* @throws {Stubs.Exceptions.ArgumentError} graph is null.
*/
@@ -5485,7 +5485,7 @@ declare namespace yfiles{
* Convenience method that imports the graph from an XML data provided in a string data.
* @param graph The Graph object that is to be populated with nodes and edges as read from the GraphML data.
* @param data A string that contains GraphML data.
- * @returns
+ * @returns
*/
readFromGraphMLText(graph:yfiles.graph.IGraph,data:string):Promise;
/**
@@ -5496,7 +5496,7 @@ declare namespace yfiles{
*
* @param graph The Graph object that is to be populated with nodes and edges as read from the GraphML file.
* @param url The url of the file to be read.
- * @returns
+ * @returns
* @throws {Stubs.Exceptions.ArgumentError} url is null.
* @throws {Stubs.Exceptions.ArgumentError} graph is null.
*/
@@ -6143,7 +6143,7 @@ declare namespace yfiles{
isInstance(o:any):o is yfiles.graphml.IGenericInputHandlerFactory;
};
/**
- *
+ *
* @class
*/
export interface GraphMLSupport extends yfiles.lang.Object{}
@@ -6353,33 +6353,33 @@ declare namespace yfiles{
*/
constructor(parentContext:yfiles.graphml.IParseContext);
/**
- *
+ *
* Type parameter T.
* @param targetType
* @param context
* @param targetNode
- * @returns
+ * @returns
* @template T
*/
deserializeCore(targetType:yfiles.lang.Class,context:yfiles.graphml.IParseContext,targetNode:Node):T;
/**
- *
+ *
* Type parameter T.
* @param itemType
- * @returns
+ * @returns
* @template T
*/
getCurrent(itemType:yfiles.lang.Class):T;
/**
- *
+ *
* @param key
- * @returns
+ * @returns
*/
getDeserializationProperty(key:string):any;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -6415,17 +6415,17 @@ declare namespace yfiles{
*/
parentContext:yfiles.graphml.IParseContext;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
objectStack:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.graphml.IParseEvents}
*/
parseEvents:yfiles.graphml.IParseEvents;
/**
- *
+ *
* @type {yfiles.graph.IGraph}
*/
graph:yfiles.graph.IGraph;
@@ -6596,7 +6596,7 @@ declare namespace yfiles{
/**
* Retrieve a deserialization property that has been set by {@link yfiles.graphml.GraphMLParser#setDeserializationProperty}.
* @param key The key for the property.
- * @returns
+ * @returns
* @see yfiles.graphml.IParseContext#getDeserializationProperty
*/
getDeserializationProperty(key:string):any;
@@ -6667,7 +6667,7 @@ declare namespace yfiles{
* and use the result. For further reference see {@link http://msdn.microsoft.com/en-us/library/ie/hh180177.aspx}.
* @param graph The graph instance that is populated.
* @param elementFactory The {@link } instance that is used to create the elements.
- * @returns
+ * @returns
* @see yfiles.graphml.GraphMLIOHandler#readFromDocument
*/
parseFromDocument(graph:yfiles.graph.IGraph,document:Document,elementFactory:yfiles.graphml.IGraphElementFactory):Promise;
@@ -6679,7 +6679,7 @@ declare namespace yfiles{
* @param url The URL to the input to parse.
* @param graph The graph instance that is populated.
* @param elementFactory The {@link } instance that is used to create the elements.
- * @returns
+ * @returns
* @see yfiles.graphml.GraphMLIOHandler#readFromGraphMLText
*/
parseFromURL(graph:yfiles.graph.IGraph,url:string,elementFactory:yfiles.graphml.IGraphElementFactory):Promise;
@@ -6968,61 +6968,61 @@ declare namespace yfiles{
* Factory method to create a default implementation of {@link yfiles.graphml.IGraphElementIdProvider} that delegates to fallback
* and uses the values stored by this {@link yfiles.graphml.GraphElementIdAcceptor} instance, if possible.
* @param fallback The fallback.
- * @returns
+ * @returns
*/
createIdProvider(fallback:yfiles.graphml.IGraphElementIdProvider):yfiles.graphml.IGraphElementIdProvider;
/**
- *
+ *
* @param context
* @param id
- * @returns
+ * @returns
*/
resolveEdge(context:yfiles.graphml.IParseContext,id:string):yfiles.graph.IEdge;
/**
- *
+ *
* @param context
* @param id
- * @returns
+ * @returns
*/
resolveGraph(context:yfiles.graphml.IParseContext,id:string):yfiles.graph.IGraph;
/**
- *
+ *
* @param context
* @param id
- * @returns
+ * @returns
*/
resolveNode(context:yfiles.graphml.IParseContext,id:string):yfiles.graph.INode;
/**
- *
+ *
* @param context
* @param ownerId
* @param id
- * @returns
+ * @returns
*/
resolvePort(context:yfiles.graphml.IParseContext,ownerId:string,id:string):yfiles.graph.IPort;
/**
- *
+ *
* @param context
* @param edge
* @param id
*/
storeEdgeId(context:yfiles.graphml.IParseContext,edge:yfiles.graph.IEdge,id:string):void;
/**
- *
+ *
* @param context
* @param graph
* @param id
*/
storeGraphId(context:yfiles.graphml.IParseContext,graph:yfiles.graph.IGraph,id:string):void;
/**
- *
+ *
* @param context
* @param node
* @param id
*/
storeNodeId(context:yfiles.graphml.IParseContext,node:yfiles.graph.INode,id:string):void;
/**
- *
+ *
* @param context
* @param port
* @param id
@@ -7435,23 +7435,23 @@ declare namespace yfiles{
*/
constructor(parentContext:yfiles.graphml.IWriteContext);
/**
- *
+ *
* Type parameter T.
* @param itemType
- * @returns
+ * @returns
* @template T
*/
getCurrent(itemType:yfiles.lang.Class):T;
/**
- *
+ *
* @param key
- * @returns
+ * @returns
*/
getSerializationProperty(key:string):any;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -7467,7 +7467,7 @@ declare namespace yfiles{
*/
removeSerializationProperty(key:string):void;
/**
- *
+ *
* Type parameter T.
* @param targetType
* @param context
@@ -7491,12 +7491,12 @@ declare namespace yfiles{
*/
setSerializationProperty(key:string,value:any):void;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
objectStack:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.graphml.IWriteEvents}
*/
writeEvents:yfiles.graphml.IWriteEvents;
@@ -7514,7 +7514,7 @@ declare namespace yfiles{
*/
writer:yfiles.graphml.IXmlWriter;
/**
- *
+ *
* @type {yfiles.graph.IGraph}
*/
graph:yfiles.graph.IGraph;
@@ -7557,7 +7557,7 @@ declare namespace yfiles{
/**
* Retrieve a serialization property that has been set by {@link yfiles.graphml.GraphMLWriter#setSerializationProperty}.
* @param key The key for the property.
- * @returns
+ * @returns
* @see yfiles.graphml.IWriteContext#getSerializationProperty
*/
getSerializationProperty(key:string):any;
@@ -8084,12 +8084,12 @@ declare namespace yfiles{
*/
precedence:yfiles.graphml.WritePrecedence;
/**
- *
+ *
* @type {yfiles.collections.IEnumerable.}
*/
keyDefinitionAttributes:yfiles.collections.IEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IEnumerable.}
*/
dataTagAttributes:yfiles.collections.IEnumerable;
@@ -8160,7 +8160,7 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
* @param addEndTag
* @protected
*/
@@ -8172,81 +8172,81 @@ declare namespace yfiles{
*/
createNamespaceManager():yfiles.graphml.IXmlNamespaceManager;
/**
- *
+ *
*/
flushDocument():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
getXmlString():string;
/**
- *
+ *
* @param prefix
* @param localName
* @param ns
* @param value
- * @returns
+ * @returns
*/
writeAttributeNS(prefix:string,localName:string,ns:string,value:string):yfiles.graphml.IXmlWriter;
/**
- *
+ *
* @param content
- * @returns
+ * @returns
*/
writeCData(content:string):yfiles.graphml.IXmlWriter;
/**
- *
+ *
* @param comment
- * @returns
+ * @returns
*/
writeComment(comment:string):yfiles.graphml.IXmlWriter;
/**
- *
+ *
* @param fragment
- * @returns
+ * @returns
*/
writeDocumentFragment(fragment:Document):yfiles.graphml.IXmlWriter;
/**
- *
+ *
*/
writeEndDocument():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
writeEndElement():yfiles.graphml.IXmlWriter;
/**
- *
+ *
* @param target
* @param data
- * @returns
+ * @returns
*/
writeProcessingInstruction(target:string,data:string):yfiles.graphml.IXmlWriter;
/**
- *
- * @returns
+ *
+ * @returns
*/
writeStartDocument():yfiles.graphml.IXmlWriter;
/**
- *
+ *
* @param prefix
* @param localName
* @param ns
- * @returns
+ * @returns
*/
writeStartElement(prefix:string,localName:string,ns:string):yfiles.graphml.IXmlWriter;
/**
- *
+ *
* @param localName
* @param ns
- * @returns
+ * @returns
*/
writeStartElement(localName:string,ns:string):yfiles.graphml.IXmlWriter;
/**
- *
+ *
* @param s
- * @returns
+ * @returns
*/
writeString(s:string):yfiles.graphml.IXmlWriter;
/**
@@ -8507,15 +8507,15 @@ declare namespace yfiles{
*/
constructor(context:yfiles.graphml.IParseContext);
/**
- *
+ *
* @param property
- * @returns
+ * @returns
*/
getValueSerializerFor(property:yfiles.graphml.Property):yfiles.graphml.ValueSerializer;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
getValueSerializerFor(type:yfiles.lang.Class):yfiles.graphml.ValueSerializer;
/**
@@ -8545,15 +8545,15 @@ declare namespace yfiles{
*/
constructor(context:yfiles.graphml.IWriteContext);
/**
- *
+ *
* @param property
- * @returns
+ * @returns
*/
getValueSerializerFor(property:yfiles.graphml.Property):yfiles.graphml.ValueSerializer;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
getValueSerializerFor(type:yfiles.lang.Class):yfiles.graphml.ValueSerializer;
/**
@@ -8807,14 +8807,14 @@ declare namespace yfiles{
/**
* Animates the given animation instance and triggers the callback upon completion.
* @param animation The animation to perform.
- * @returns
+ * @returns
*/
animate(animation:yfiles.view.IAnimation):Promise;
/**
* Starts animating the given animation for the specified duration.
* @param callback The callback to use for the animation.
* @param duration The duration in milliseconds that the animation should last.
- * @returns
+ * @returns
*/
animate(callback:(time:number)=>void,duration:yfiles.lang.TimeSpan):Promise;
/**
@@ -8907,7 +8907,7 @@ declare namespace yfiles{
*
* @param [easeIn=0.5] The ratio for the ease-in time [0,1] where 0 is the start of the animation and 1 the end. 0.5 is the default value.
* @param [easeOut=0.5] The ratio for the ease-out time [0,1] where 0 is the start of the animation and 1 the end. 0.5 is the default value.
- * @returns
+ * @returns
*/
createEasedAnimation?(easeIn?:number,easeOut?:number):yfiles.view.IAnimation;
/**
@@ -8924,7 +8924,7 @@ declare namespace yfiles{
* @param {Object} options The parameters to pass.
* @param [options.easeIn=0.5] The ratio for the ease-in time [0,1] where 0 is the start of the animation and 1 the end. 0.5 is the default value.
* @param [options.easeOut=0.5] The ratio for the ease-out time [0,1] where 0 is the start of the animation and 1 the end. 0.5 is the default value.
- * @returns
+ * @returns
*/
createEasedAnimation?(options:{easeIn?:number,easeOut?:number}):yfiles.view.IAnimation;
/**
@@ -8964,7 +8964,7 @@ declare namespace yfiles{
* @param endSourceLocation The absolute position of the source port after the animation.
* @param endTargetLocation The absolute position of the target port after the animation.
* @param preferredDuration The preferred duration of the animation in milliseconds.
- * @returns
+ * @returns
* @static
*/
createEdgeSegmentAnimation?(graph:yfiles.graph.IGraph,edge:yfiles.graph.IEdge,endBends:yfiles.geometry.IPoint[],endSourceLocation:yfiles.geometry.Point,endTargetLocation:yfiles.geometry.Point,preferredDuration:yfiles.lang.TimeSpan):yfiles.view.IAnimation;
@@ -8977,7 +8977,7 @@ declare namespace yfiles{
* @param targetLayoutParameters The label model parameters for each label after the animation.
* @param targetPortLocations The {@link }s for each {@link } in the graph that will be morphed.
* @param preferredDuration The preferred duration of the animation in milliseconds.
- * @returns
+ * @returns
* @static
*/
createGraphAnimation?(graph:yfiles.graph.IGraph,targetNodeLayouts:yfiles.collections.IMapper,targetBendLocations:yfiles.collections.IMapper,targetPortLocations:yfiles.collections.IMapper,targetLayoutParameters:yfiles.collections.IMapper,preferredDuration:yfiles.lang.TimeSpan):yfiles.view.IAnimation;
@@ -9009,7 +9009,7 @@ declare namespace yfiles{
* @param graph the graph for which the layout should be animated
* @param layoutGraph the {@link } that contains all target layout information
* @param preferredDuration the preferred duration of the animation
- * @returns
+ * @returns
* @static
*/
createLayoutAnimation?(graph:yfiles.graph.IGraph,layoutGraph:yfiles.layout.CopiedLayoutGraph,preferredDuration:yfiles.lang.TimeSpan):yfiles.view.IAnimation;
@@ -9041,7 +9041,7 @@ declare namespace yfiles{
* @param path The path to animate the point along.
* @param animationPoint The mutable point instance that will be manipulated by the animation.
* @param preferredDuration The preferred duration of the animation.
- * @returns
+ * @returns
* @static
*/
createPathAnimation?(path:yfiles.geometry.GeneralPath,animationPoint:yfiles.geometry.IMutablePoint,preferredDuration:yfiles.lang.TimeSpan):yfiles.view.IAnimation;
@@ -9073,7 +9073,7 @@ declare namespace yfiles{
* @param table The table to animate.
* @param columnLayout The sizes of the leaf columns, in natural order.
* @param rowLayout The sizes of the leaf rows, in natural order.
- * @returns
+ * @returns
* @static
*/
createTableAnimation?(table:yfiles.graph.ITable,columnLayout:number[],rowLayout:number[]):yfiles.view.IAnimation;
@@ -9111,7 +9111,7 @@ declare namespace yfiles{
*/
constructor(options:{canvas:yfiles.view.CanvasComponent,targetBounds:yfiles.geometry.Rect,preferredDuration?:yfiles.lang.TimeSpan,considerViewportLimiter?:boolean,maximumTargetZoom?:number});
/**
- *
+ *
* @param time
*/
animate(time:number):void;
@@ -9560,7 +9560,7 @@ declare namespace yfiles{
* This will return the canvas object that is painted last at the given position.
*
* @param location the coordinates of the query in the world coordinate system
- * @returns
+ * @returns
*/
getCanvasObject(location:yfiles.geometry.Point):yfiles.view.ICanvasObject;
/**
@@ -9587,7 +9587,7 @@ declare namespace yfiles{
/**
* Gets the {@link yfiles.view.CanvasComponent} instance that is associated with the given DOM element, or null.
* @param element
- * @returns
+ * @returns
* @static
*/
static getComponent(element:Element):yfiles.view.CanvasComponent;
@@ -9719,9 +9719,9 @@ declare namespace yfiles{
*/
localToGlobal(localPoint:yfiles.geometry.Point):yfiles.geometry.Point;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -11304,7 +11304,7 @@ declare namespace yfiles{
* controlled for each image individually by overwriting the predicate method {@link yfiles.view.SvgExport#shouldInlineSvgImage}.
*
* @param canvas The canvas to be exported.
- * @returns
+ * @returns
*/
exportSvgAsync(canvas:yfiles.view.CanvasComponent):Promise;
/**
@@ -11704,7 +11704,7 @@ declare namespace yfiles{
* @param layout
* @param [morphDuration=null]
* @param [layoutData=null]
- * @returns
+ * @returns
*/
morphLayout(layout:yfiles.layout.ILayoutAlgorithm,morphDuration?:yfiles.lang.TimeSpan,layoutData?:yfiles.layout.LayoutData):Promise;
/**
@@ -11721,7 +11721,7 @@ declare namespace yfiles{
* @param options.layout
* @param [options.morphDuration=null]
* @param [options.layoutData=null]
- * @returns
+ * @returns
*/
morphLayout(options:{layout:yfiles.layout.ILayoutAlgorithm,morphDuration?:yfiles.lang.TimeSpan,layoutData?:yfiles.layout.LayoutData}):Promise;
/**
@@ -12056,7 +12056,7 @@ declare namespace yfiles{
* @param canvas the canvas
* @param [zoom=0] the zoom level
* @param [hitTestRadius=-1] the hit test radius
- * @returns
+ * @returns
* @static
*/
createCanvasContext?(canvas:yfiles.view.CanvasComponent,zoom?:number,hitTestRadius?:number):yfiles.view.ICanvasContext;
@@ -12069,7 +12069,7 @@ declare namespace yfiles{
* @param options.canvas the canvas
* @param [options.zoom=0] the zoom level
* @param [options.hitTestRadius=-1] the hit test radius
- * @returns
+ * @returns
* @static
*/
createCanvasContext?(options:{canvas:yfiles.view.CanvasComponent,zoom?:number,hitTestRadius?:number}):yfiles.view.ICanvasContext;
@@ -13052,7 +13052,7 @@ declare namespace yfiles{
export interface ItemModelManager extends yfiles.lang.Object{}
export class ItemModelManager {
/**
- *
+ *
* @param itemType The type of managed items.
*/
constructor(itemType:yfiles.lang.Class);
@@ -13213,12 +13213,12 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
*/
clear():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
getEnumerator():yfiles.collections.IEnumerator;
/**
@@ -13271,17 +13271,17 @@ declare namespace yfiles{
*/
selection:yfiles.collections.IObservableCollection;
/**
- *
+ *
* @type {number}
*/
size:number;
/**
- *
+ *
* @param listener
*/
addItemSelectionChangedListener(listener:(sender:any,evt:yfiles.view.ItemSelectionChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeItemSelectionChangedListener(listener:(sender:any,evt:yfiles.view.ItemSelectionChangedEventArgs)=>void):void;
@@ -13367,7 +13367,7 @@ declare namespace yfiles{
*/
focused:boolean;
static $class:yfiles.lang.Class;
- static isInstance(o:any):o is yfiles.view.FocusIndicatorManager;
+ static isInstance(o:any):o is yfiles.view.FocusIndicatorManager;
}
/**
* A {@link yfiles.view.ModelManager.} implementation that manages the visual decorations of highlighted elements in a canvas.
@@ -13411,7 +13411,7 @@ declare namespace yfiles{
*/
selectionModel:yfiles.view.ISelectionModel;
static $class:yfiles.lang.Class;
- static isInstance(o:any):o is yfiles.view.HighlightIndicatorManager;
+ static isInstance(o:any):o is yfiles.view.HighlightIndicatorManager;
}
/**
* Installs visual representations of items in a {@link yfiles.view.CanvasComponent}.
@@ -13671,7 +13671,7 @@ declare namespace yfiles{
/**
* Adds an item to the current selection.
* @param item The item whose selection decorator will added.
- * @returns
+ * @returns
*/
addSelection(item:T):yfiles.view.ICanvasObject;
/**
@@ -13696,7 +13696,7 @@ declare namespace yfiles{
*/
model:yfiles.collections.IObservableCollection;
static $class:yfiles.lang.Class;
- static isInstance(o:any):o is yfiles.view.SelectionIndicatorManager;
+ static isInstance(o:any):o is yfiles.view.SelectionIndicatorManager;
}
/**
* A container that can hold a number of {@link yfiles.view.SvgVisual}s.
@@ -13769,16 +13769,16 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
* @param context
- * @returns
+ * @returns
*/
createVisual(context:yfiles.view.IRenderContext):yfiles.view.Visual;
/**
- *
+ *
* @param context
* @param oldVisual
- * @returns
+ * @returns
*/
updateVisual(context:yfiles.view.IRenderContext,oldVisual:yfiles.view.Visual):yfiles.view.Visual;
/**
@@ -13863,7 +13863,7 @@ declare namespace yfiles{
/**
* Creates an instance that returns the given model as the bounds.
* @param bounds the rectangle
- * @returns
+ * @returns
* @static
*/
fromRectangle?(bounds:yfiles.geometry.IRectangle):yfiles.view.IBoundsProvider;
@@ -14109,14 +14109,14 @@ declare namespace yfiles{
/**
* Returns null.
* @param context
- * @returns
+ * @returns
*/
createVisual(context:yfiles.view.IRenderContext):yfiles.view.Visual;
/**
* Returns null.
* @param context
* @param oldVisual
- * @returns
+ * @returns
*/
updateVisual(context:yfiles.view.IRenderContext,oldVisual:yfiles.view.Visual):yfiles.view.Visual;
/**
@@ -14167,11 +14167,11 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
* @param context
* @param group
* @param item
- * @returns
+ * @returns
*/
addCanvasObject(context:yfiles.view.ICanvasContext,group:yfiles.view.ICanvasObjectGroup,item:any):yfiles.view.ICanvasObject;
/**
@@ -14236,11 +14236,11 @@ declare namespace yfiles{
*/
constructor(point:yfiles.geometry.IPoint);
/**
- *
+ *
* @param context
* @param group
* @param item
- * @returns
+ * @returns
*/
addCanvasObject(context:yfiles.view.ICanvasContext,group:yfiles.view.ICanvasObjectGroup,item:any):yfiles.view.ICanvasObject;
/**
@@ -14249,7 +14249,7 @@ declare namespace yfiles{
* This implementation simply returns the value provided to the constructor.
*
* @param userObject
- * @returns
+ * @returns
* @protected
*/
getCenterPoint(userObject:any):yfiles.geometry.IPoint;
@@ -14304,11 +14304,11 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
* @param context
* @param group
* @param item
- * @returns
+ * @returns
*/
addCanvasObject(context:yfiles.view.ICanvasContext,group:yfiles.view.ICanvasObjectGroup,item:any):yfiles.view.ICanvasObject;
/**
@@ -14448,34 +14448,34 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
* @param forUserObject
- * @returns
+ * @returns
*/
getBoundsProvider(forUserObject:any):yfiles.view.IBoundsProvider;
/**
- *
+ *
* @param forUserObject
- * @returns
+ * @returns
*/
getHitTestable(forUserObject:any):yfiles.input.IHitTestable;
/**
- *
+ *
* @param forUserObject
- * @returns
+ * @returns
*/
getVisibilityTestable(forUserObject:any):yfiles.view.IVisibilityTestable;
/**
- *
+ *
* @param forUserObject
- * @returns
+ * @returns
*/
getVisualCreator(forUserObject:any):yfiles.view.IVisualCreator;
/**
- *
+ *
* @param context
* @param canvasObject
- * @returns
+ * @returns
*/
isDirty(context:yfiles.view.ICanvasContext,canvasObject:yfiles.view.ICanvasObject):boolean;
/**
@@ -14632,7 +14632,7 @@ declare namespace yfiles{
*
* Type parameter T.
* @param itemType
- * @returns
+ * @returns
* @template T
*/
createHitTester(itemType:yfiles.lang.Class):yfiles.input.IHitTester;
@@ -15025,36 +15025,36 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
*/
clear():void;
/**
* Factory method that creates the {@link yfiles.view.DefaultSelectionModel.} to use for the bends.
- * @returns
+ * @returns
* @protected
*/
createBendSelectionModel():yfiles.view.DefaultSelectionModel;
/**
* Factory method that creates the {@link yfiles.view.DefaultSelectionModel.} to use for the edges.
- * @returns
+ * @returns
* @protected
*/
createEdgeSelectionModel():yfiles.view.DefaultSelectionModel;
/**
* Factory method that creates the {@link yfiles.view.DefaultSelectionModel.} to use for the labels.
- * @returns
+ * @returns
* @protected
*/
createLabelSelectionModel():yfiles.view.DefaultSelectionModel;
/**
* Factory method that creates the {@link yfiles.view.DefaultSelectionModel.} to use for the nodes.
- * @returns
+ * @returns
* @protected
*/
createNodeSelectionModel():yfiles.view.DefaultSelectionModel;
/**
* Factory method that creates the {@link yfiles.view.DefaultSelectionModel.} to use for the ports.
- * @returns
+ * @returns
* @protected
*/
createPortSelectionModel():yfiles.view.DefaultSelectionModel;
@@ -15064,9 +15064,9 @@ declare namespace yfiles{
*/
getEnumerator():yfiles.collections.IEnumerator;
/**
- *
+ *
* @param item
- * @returns
+ * @returns
*/
isSelected(item:yfiles.graph.IModelItem):boolean;
/**
@@ -15076,38 +15076,38 @@ declare namespace yfiles{
*/
onItemSelectionChanged(evt:yfiles.view.ItemSelectionChangedEventArgs):void;
/**
- *
+ *
* @param item
* @param selected
*/
setSelected(item:yfiles.graph.IModelItem,selected:boolean):void;
/**
- *
+ *
* @type {yfiles.view.ISelectionModel.}
*/
selectedNodes:yfiles.view.ISelectionModel;
/**
- *
+ *
* @type {yfiles.view.ISelectionModel.}
*/
selectedEdges:yfiles.view.ISelectionModel;
/**
- *
+ *
* @type {yfiles.view.ISelectionModel.}
*/
selectedLabels:yfiles.view.ISelectionModel;
/**
- *
+ *
* @type {yfiles.view.ISelectionModel.}
*/
selectedPorts:yfiles.view.ISelectionModel;
/**
- *
+ *
* @type {yfiles.view.ISelectionModel.}
*/
selectedBends:yfiles.view.ISelectionModel;
/**
- *
+ *
* @type {number}
*/
size:number;
@@ -15117,12 +15117,12 @@ declare namespace yfiles{
*/
graph:yfiles.graph.IGraph;
/**
- *
+ *
* @param listener
*/
addItemSelectionChangedListener(listener:(sender:any,evt:yfiles.view.ItemSelectionChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeItemSelectionChangedListener(listener:(sender:any,evt:yfiles.view.ItemSelectionChangedEventArgs)=>void):void;
@@ -15649,7 +15649,7 @@ declare namespace yfiles{
freeze():void;
/**
* Determines if this instance is frozen.
- * @returns
+ * @returns
*/
isFrozen():boolean;
/**
@@ -17702,23 +17702,23 @@ declare namespace yfiles{
static isInstance(o:any):o is yfiles.view.Color;
}
/**
- *
+ *
* @class
* @extends {yfiles.graphml.MarkupExtension}
*/
export interface ColorExtension extends yfiles.graphml.MarkupExtension{}
export class ColorExtension {
/**
- *
+ *
* @param color
*/
constructor(color:yfiles.view.Color);
/**
- *
+ *
*/
constructor();
/**
- *
+ *
* @type {string}
*/
value:string;
@@ -18056,7 +18056,7 @@ declare namespace yfiles{
freeze():void;
/**
* Determines if this instance is frozen.
- * @returns
+ * @returns
*/
isFrozen():boolean;
/**
@@ -18366,7 +18366,7 @@ declare namespace yfiles{
freeze():void;
/**
* Determines if this instance is frozen.
- * @returns
+ * @returns
*/
isFrozen():boolean;
/**
@@ -18683,11 +18683,11 @@ declare namespace yfiles{
*/
constructor(options?:{startPoint?:yfiles.geometry.Point,endPoint?:yfiles.geometry.Point,spreadMethod?:yfiles.view.GradientSpreadMethod,gradientStops?:Array});
/**
- *
+ *
* @param context
* @param item
* @param id
- * @returns
+ * @returns
*/
accept(context:yfiles.view.ICanvasContext,item:Node,id:string):boolean;
/**
@@ -18771,21 +18771,21 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
* @param context
* @param node
* @param id
- * @returns
+ * @returns
*/
accept(context:yfiles.view.ICanvasContext,node:Node,id:string):boolean;
/**
- *
+ *
* @param context
- * @returns
+ * @returns
*/
createDefsElement(context:yfiles.view.ICanvasContext):SVGElement;
/**
- *
+ *
* @param context
* @param oldElement
*/
@@ -18904,7 +18904,7 @@ declare namespace yfiles{
clone():any;
/**
* Clones the current value of this instance to a new unfrozen {@link yfiles.view.Stroke}.
- * @returns
+ * @returns
*/
cloneCurrentValue():yfiles.view.Stroke;
/**
@@ -18916,7 +18916,7 @@ declare namespace yfiles{
freeze():void;
/**
* Determines if this instance is frozen.
- * @returns
+ * @returns
*/
isFrozen():boolean;
/**
@@ -19594,11 +19594,11 @@ declare namespace yfiles{
*/
constructor(options?:{center?:yfiles.geometry.Point,radiusX?:number,radiusY?:number,spreadMethod?:yfiles.view.GradientSpreadMethod,gradientOrigin?:yfiles.geometry.Point,gradientStops?:Array});
/**
- *
+ *
* @param context
* @param item
* @param id
- * @returns
+ * @returns
*/
accept(context:yfiles.view.ICanvasContext,item:Node,id:string):boolean;
/**
@@ -20724,12 +20724,12 @@ declare namespace yfiles{
*/
constructor(table:yfiles.graph.ITable,columnLayout:number[],rowLayout:number[]);
/**
- *
+ *
* @param time
*/
animate(time:number):void;
/**
- *
+ *
*/
cleanup():void;
/**
@@ -20741,7 +20741,7 @@ declare namespace yfiles{
*/
createStripeAnimation(stripe:yfiles.graph.IStripe,targetSize:number):yfiles.view.IAnimation;
/**
- *
+ *
*/
initialize():void;
/**
@@ -20813,12 +20813,12 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
*/
clear():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
getEnumerator():yfiles.collections.IEnumerator;
/**
@@ -20834,7 +20834,7 @@ declare namespace yfiles{
*/
onItemSelectionChanged(evt:yfiles.view.ItemSelectionChangedEventArgs):void;
/**
- *
+ *
* @param item
* @param selected
*/
@@ -20856,27 +20856,27 @@ declare namespace yfiles{
*/
allowCrossTableSelection:boolean;
/**
- *
+ *
* @type {yfiles.view.ISelectionModel.}
*/
selectedRows:yfiles.view.ISelectionModel;
/**
- *
+ *
* @type {yfiles.view.ISelectionModel.}
*/
selectedColumns:yfiles.view.ISelectionModel;
/**
- *
+ *
* @type {number}
*/
size:number;
/**
- *
+ *
* @param listener
*/
addItemSelectionChangedListener(listener:(sender:any,evt:yfiles.view.ItemSelectionChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeItemSelectionChangedListener(listener:(sender:any,evt:yfiles.view.ItemSelectionChangedEventArgs)=>void):void;
@@ -21399,7 +21399,7 @@ declare namespace yfiles{
*/
inputModeContext:yfiles.input.IInputModeContext;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -21554,19 +21554,19 @@ declare namespace yfiles{
cancel():void;
/**
* Creates the event recognizer that is used to recognize the clicks for this instance.
- * @returns
+ * @returns
* @protected
*/
createClickRecognizer():(eventSource:any,evt:yfiles.lang.EventArgs)=>boolean;
/**
* Creates the event recognizer that is used to recognize the press event for this instance.
- * @returns
+ * @returns
* @protected
*/
createPressRecognizer():(eventSource:any,evt:yfiles.lang.EventArgs)=>boolean;
/**
* Creates the event recognizer that is used to recognize the release event for this instance.
- * @returns
+ * @returns
* @protected
*/
createReleaseRecognizer():(eventSource:any,evt:yfiles.lang.EventArgs)=>boolean;
@@ -21593,7 +21593,7 @@ declare namespace yfiles{
* Determines whether the given event is a press event that occurred at an invalid location.
* @param eventSource
* @param evt
- * @returns
+ * @returns
* @see yfiles.input.ClickInputMode#validClickHitTestable
* @protected
*/
@@ -21602,7 +21602,7 @@ declare namespace yfiles{
* Determines whether the given event is a valid click event.
* @param src
* @param evt
- * @returns
+ * @returns
* @see yfiles.input.ClickInputMode#validClickHitTestable
* @protected
*/
@@ -21611,7 +21611,7 @@ declare namespace yfiles{
* Determines whether the given event is a valid press event.
* @param eventSource
* @param evt
- * @returns
+ * @returns
* @protected
*/
isValidPress(eventSource:any,evt:yfiles.lang.EventArgs):boolean;
@@ -21619,7 +21619,7 @@ declare namespace yfiles{
* Determines whether the given event is a valid release event.
* @param src
* @param evt
- * @returns
+ * @returns
* @see yfiles.input.ClickInputMode#validClickHitTestable
* @protected
*/
@@ -21744,13 +21744,13 @@ declare namespace yfiles{
*
* To ensure that the flag really acts just once, this method resets the flag and returns its value prior to the reset.
*
- * @returns
+ * @returns
* @protected
*/
queryAndResetPreventNextDoubleClick():boolean;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -21767,7 +21767,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -21793,7 +21793,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -22417,14 +22417,14 @@ declare namespace yfiles{
*
* @param [queryLocation=null] The optional location for which the context menu content should be queried. This value will be passed to {@link #onPopulateMenu}
* and will ultimately be available in {@link #queryLocation}. If not specified, the last known mouse location will be used.
- * @returns
+ * @returns
* @see yfiles.input.ContextMenuInputMode#menuClosed
* @see yfiles.input.ContextMenuInputMode#addCloseMenuListener
*/
shouldOpenMenu(queryLocation?:yfiles.geometry.Point):boolean;
/**
* Stops the display of the context menu and requests that the context menu is closed.
- * @returns
+ * @returns
*/
tryStop():boolean;
/**
@@ -22433,7 +22433,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -22459,7 +22459,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -22584,7 +22584,7 @@ declare namespace yfiles{
/**
* Callback that adjusts the effect accordingly.
* @param evt
- * @returns
+ * @returns
* @protected
*/
adjustEffect(evt:yfiles.view.DragEventArgs):boolean;
@@ -22700,7 +22700,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -22726,7 +22726,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -22963,7 +22963,7 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
*/
cancel():void;
/**
@@ -23030,8 +23030,8 @@ declare namespace yfiles{
*/
onStopped():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -23048,7 +23048,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -23062,7 +23062,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -23149,7 +23149,7 @@ declare namespace yfiles{
*/
beginDragging(handle:yfiles.input.IHandle):void;
/**
- *
+ *
*/
cancel():void;
/**
@@ -23351,8 +23351,8 @@ declare namespace yfiles{
*/
removeHandle(handle:yfiles.input.IHandle):void;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -23361,7 +23361,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -23390,7 +23390,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -24096,13 +24096,13 @@ declare namespace yfiles{
*/
constructor(gridSize:number);
/**
- *
+ *
* @param context
* @param item
* @param location
* @param xSnapPolicy
* @param ySnapPolicy
- * @returns
+ * @returns
*/
snapToGrid(context:yfiles.input.IInputModeContext,item:T,location:yfiles.geometry.IMutablePoint,xSnapPolicy:yfiles.input.SnapPolicy,ySnapPolicy:yfiles.input.SnapPolicy):boolean;
/**
@@ -24554,7 +24554,7 @@ declare namespace yfiles{
* @param parent
* @param parentContext
* @param lookupCallback
- * @returns
+ * @returns
* @static
*/
createInputModeContext?(parent:yfiles.input.IInputMode,parentContext:yfiles.input.IInputModeContext,lookupCallback:(subject:any,type:yfiles.lang.Class)=>any):yfiles.input.IInputModeContext;
@@ -24562,7 +24562,7 @@ declare namespace yfiles{
* Factory method that creates an {@link yfiles.input.IInputModeContext} that uses the provided parent mode and lookup decoration.
* @param parent
* @param lookupCallback
- * @returns
+ * @returns
* @static
*/
createInputModeContext?(parent:yfiles.input.IInputMode,lookupCallback:(subject:any,type:yfiles.lang.Class)=>any):yfiles.input.IInputModeContext;
@@ -24571,7 +24571,7 @@ declare namespace yfiles{
* @param canvas The {@link } to use, may not be null.
* @param [parent=null] The mode to set as the parent. This may be null for the canvas' context.
* @param [lookup=null] The lookup to use.
- * @returns
+ * @returns
* @static
*/
createInputModeContext?(canvas:yfiles.view.CanvasComponent,parent?:yfiles.input.IInputMode,lookup?:yfiles.graph.ILookup):yfiles.input.IInputModeContext;
@@ -24581,7 +24581,7 @@ declare namespace yfiles{
* @param options.canvas The {@link } to use, may not be null.
* @param [options.parent=null] The mode to set as the parent. This may be null for the canvas' context.
* @param [options.lookup=null] The lookup to use.
- * @returns
+ * @returns
* @static
*/
createInputModeContext?(options:{canvas:yfiles.view.CanvasComponent,parent?:yfiles.input.IInputMode,lookup?:yfiles.graph.ILookup}):yfiles.input.IInputModeContext;
@@ -24591,7 +24591,7 @@ declare namespace yfiles{
* @param parent
* @param parentContext
* @param lookup
- * @returns
+ * @returns
* @static
*/
createInputModeContext?(parent:yfiles.input.IInputMode,parentContext:yfiles.input.IInputModeContext,lookup:yfiles.graph.ILookup):yfiles.input.IInputModeContext;
@@ -24599,7 +24599,7 @@ declare namespace yfiles{
* Factory method that creates an {@link yfiles.input.IInputModeContext} that uses the provided parent mode and lookup decoration.
* @param parent
* @param [lookup=null]
- * @returns
+ * @returns
* @static
*/
createInputModeContext?(parent:yfiles.input.IInputMode,lookup?:yfiles.graph.ILookup):yfiles.input.IInputModeContext;
@@ -24823,7 +24823,7 @@ declare namespace yfiles{
*/
addRecognizerBinding(recognizer:(eventSource:any,evt:yfiles.lang.EventArgs)=>boolean,command:yfiles.input.ICommand,commandParameter?:any):yfiles.input.KeyboardInputModeBinding;
/**
- *
+ *
*/
cancel():void;
/**
@@ -24920,7 +24920,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -24946,7 +24946,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -25146,8 +25146,8 @@ declare namespace yfiles{
*/
onStopped():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -25164,7 +25164,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -25190,7 +25190,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -25477,7 +25477,7 @@ declare namespace yfiles{
*/
adjustTooltipPosition(originalPosition:yfiles.geometry.Point):yfiles.geometry.Point;
/**
- *
+ *
*/
cancel():void;
/**
@@ -25625,7 +25625,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -25651,7 +25651,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -25945,8 +25945,8 @@ declare namespace yfiles{
*/
onStopped():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -25972,7 +25972,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -25983,7 +25983,7 @@ declare namespace yfiles{
*/
controller:yfiles.input.ConcurrencyController;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -26473,17 +26473,17 @@ declare namespace yfiles{
*/
onStopped():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
- *
+ *
* @param context
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -26509,7 +26509,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -26822,7 +26822,7 @@ declare namespace yfiles{
*/
initialize():void;
/**
- *
+ *
* @param context
* @param controller
*/
@@ -26864,11 +26864,11 @@ declare namespace yfiles{
subModePriorityChanged():void;
/**
* Tries to stop all modes.
- * @returns
+ * @returns
*/
tryStop():boolean;
/**
- *
+ *
* @param context
*/
uninstall(context:yfiles.input.IInputModeContext):void;
@@ -26894,12 +26894,12 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {number}
*/
priority:number;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -27323,7 +27323,7 @@ declare namespace yfiles{
*/
selection:yfiles.view.ISelectionModel;
static $class:yfiles.lang.Class;
- static isInstance(o:any):o is yfiles.input.SelectionEventArgs;
+ static isInstance(o:any):o is yfiles.input.SelectionEventArgs;
}
/**
* Manages interactive snapping of elements to other elements during drag operations like movements.
@@ -27650,7 +27650,7 @@ declare namespace yfiles{
* @param snapLine The snap line this class would snap to or null if it doesn't snap to a SnapLine.
* @param snappedCoordinates The coordinates at the moved item at which the drawn snap line should end.
* @param movedObject The moved object for which this result is created.
- * @returns
+ * @returns
* @static
*/
static createLabelSnapResult(layoutParameter:yfiles.graph.ILabelModelParameter,weight:number,delta:yfiles.geometry.Point,tag:any,snapLine:yfiles.input.SnapLine,snappedCoordinates:yfiles.geometry.Point,movedObject:any):yfiles.input.SnapResult;
@@ -27677,7 +27677,7 @@ declare namespace yfiles{
* size and the object which is currently reshaped.
* @param size The target size to which the resized object will snap.
* @param horizontal Indicates whether width or height should snap. true if the width should snap.
- * @returns
+ * @returns
* @static
*/
static createResizeSnapResult(weight:number,delta:number,tag:any,rectangles:yfiles.collections.IEnumerable,size:number,horizontal:boolean):yfiles.input.SnapResult;
@@ -27691,7 +27691,7 @@ declare namespace yfiles{
* @param snapLine The snap line this class would snap to or null if it doesn't snap to a SnapLine.
* @param snappedLocation The coordinates at the moved item at which the drawn snap line should end.
* @param movedObject The moved object for which this result is created.
- * @returns
+ * @returns
* @static
*/
static createSnapLineSnapResult(weight:number,delta:yfiles.geometry.Point,tag:any,snapLine:yfiles.input.SnapLine,snappedLocation:yfiles.geometry.Point,movedObject:any):yfiles.input.SnapResult;
@@ -27913,19 +27913,19 @@ declare namespace yfiles{
cancel():void;
/**
* Creates the event recognizer that is used to recognize the press event for this instance.
- * @returns
+ * @returns
* @protected
*/
createPressRecognizer():(eventSource:any,evt:yfiles.lang.EventArgs)=>boolean;
/**
* Creates the event recognizer that is used to recognize the release event for this instance.
- * @returns
+ * @returns
* @protected
*/
createReleaseRecognizer():(eventSource:any,evt:yfiles.lang.EventArgs)=>boolean;
/**
* Creates the event recognizer that is used to recognize the taps for this instance.
- * @returns
+ * @returns
* @protected
*/
createTapRecognizer():(eventSource:any,evt:yfiles.lang.EventArgs)=>boolean;
@@ -27952,7 +27952,7 @@ declare namespace yfiles{
* Determines whether the given event is a press event that occurred at an invalid location.
* @param eventSource
* @param evt
- * @returns
+ * @returns
* @see yfiles.input.TapInputMode#validTapHitTestable
* @protected
*/
@@ -27961,7 +27961,7 @@ declare namespace yfiles{
* Determines whether the given event is a valid press event.
* @param eventSource
* @param evt
- * @returns
+ * @returns
* @protected
*/
isValidPress(eventSource:any,evt:yfiles.lang.EventArgs):boolean;
@@ -27969,7 +27969,7 @@ declare namespace yfiles{
* Determines whether the given event is a valid release event.
* @param eventSource
* @param evt
- * @returns
+ * @returns
* @protected
*/
isValidRelease(eventSource:any,evt:yfiles.lang.EventArgs):boolean;
@@ -27977,7 +27977,7 @@ declare namespace yfiles{
* Determines whether the given event is a valid tap event.
* @param eventSource
* @param evt
- * @returns
+ * @returns
* @protected
*/
isValidTap(eventSource:any,evt:yfiles.lang.EventArgs):boolean;
@@ -28063,13 +28063,13 @@ declare namespace yfiles{
*
* To ensure that the flag really acts just once, this method resets the flag and returns its value prior to the reset.
*
- * @returns
+ * @returns
* @protected
*/
queryAndResetPreventNextDoubleTap():boolean;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -28086,7 +28086,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -28112,7 +28112,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -28263,7 +28263,7 @@ declare namespace yfiles{
ensureVisible():void;
/**
* Returns the bounds of the text area in world coordinates.
- * @returns
+ * @returns
* @protected
*/
getTextBoxBounds():yfiles.geometry.Rect;
@@ -28402,7 +28402,7 @@ declare namespace yfiles{
*/
uninstallTextBox():void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -28428,7 +28428,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -28642,7 +28642,7 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
*/
cancel():void;
/**
@@ -28743,8 +28743,8 @@ declare namespace yfiles{
*/
startWaiting():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -28761,7 +28761,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -28775,7 +28775,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -29081,7 +29081,7 @@ declare namespace yfiles{
*/
location:yfiles.geometry.IPoint;
static $class:yfiles.lang.Class;
- static isInstance(o:any):o is yfiles.input.ConstrainedDragHandler;
+ static isInstance(o:any):o is yfiles.input.ConstrainedDragHandler;
}
/**
* Interface that is implemented for elements that can be hit or picked in a coordinate system.
@@ -29113,7 +29113,7 @@ declare namespace yfiles{
/**
* Wrap a handler into an interface.
* @param handler
- * @returns
+ * @returns
* @static
*/
create?(handler:(context:yfiles.input.IInputModeContext,location:yfiles.geometry.Point)=>boolean):yfiles.input.IHitTestable;
@@ -29556,7 +29556,7 @@ declare namespace yfiles{
createItemHoverInputMode():yfiles.input.ItemHoverInputMode;
/**
* Factory method that creates the {@link yfiles.input.GraphInputMode#keyboardInputMode} instance.
- * @returns
+ * @returns
* @protected
*/
createKeyboardInputMode():yfiles.input.KeyboardInputMode;
@@ -31623,21 +31623,21 @@ declare namespace yfiles{
*/
constructor(minimumSize:yfiles.geometry.ISize,maximumSize:yfiles.geometry.ISize,minimumEnclosedArea?:yfiles.geometry.IRectangle);
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
getMaximumSize(node:yfiles.graph.INode):yfiles.geometry.Size;
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
getMinimumEnclosedArea(node:yfiles.graph.INode):yfiles.geometry.Rect;
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
getMinimumSize(node:yfiles.graph.INode):yfiles.geometry.Size;
/**
@@ -31860,7 +31860,7 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
*/
cancel():void;
/**
@@ -31979,7 +31979,7 @@ declare namespace yfiles{
*/
updateHover(location?:yfiles.geometry.Point):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -32005,7 +32005,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -32448,7 +32448,7 @@ declare namespace yfiles{
*/
adjustGroupNodeLocation(collapse:boolean,groupNode:yfiles.graph.INode):void;
/**
- *
+ *
*/
cancel():void;
/**
@@ -32779,7 +32779,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -32805,7 +32805,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -33764,7 +33764,7 @@ declare namespace yfiles{
* This implementation will delegate to the {@link yfiles.input.DefaultPortCandidate#createInstance} method.
*
* @param context
- * @returns
+ * @returns
*/
createPort(context:yfiles.input.IInputModeContext):yfiles.graph.IPort;
/**
@@ -33870,27 +33870,27 @@ declare namespace yfiles{
*/
constructor(node:yfiles.graph.INode,wrappedHandler?:yfiles.input.IPositionHandler);
/**
- *
+ *
* @param inputModeContext
* @param originalLocation
*/
cancelDrag(inputModeContext:yfiles.input.IInputModeContext,originalLocation:yfiles.geometry.Point):void;
/**
- *
+ *
* @param inputModeContext
* @param originalLocation
* @param newLocation
*/
dragFinished(inputModeContext:yfiles.input.IInputModeContext,originalLocation:yfiles.geometry.Point,newLocation:yfiles.geometry.Point):void;
/**
- *
+ *
* @param inputModeContext
* @param originalLocation
* @param newLocation
*/
handleMove(inputModeContext:yfiles.input.IInputModeContext,originalLocation:yfiles.geometry.Point,newLocation:yfiles.geometry.Point):void;
/**
- *
+ *
* @param inputModeContext
*/
initializeDrag(inputModeContext:yfiles.input.IInputModeContext):void;
@@ -34382,14 +34382,14 @@ declare namespace yfiles{
/**
* Creates a generic composite implementation for the {@link yfiles.input.IPortCandidateProvider} interface.
* @param providers The providers to create the composite from.
- * @returns
+ * @returns
* @static
*/
combine?(...providers:yfiles.input.IPortCandidateProvider[]):yfiles.input.IPortCandidateProvider;
/**
* Creates a generic composite implementation for the {@link yfiles.input.IPortCandidateProvider} interface.
* @param providers The providers to create the composite from.
- * @returns
+ * @returns
* @static
*/
combine?(providers:yfiles.collections.IEnumerable):yfiles.input.IPortCandidateProvider;
@@ -34411,7 +34411,7 @@ declare namespace yfiles{
* Creates an implementation of the {@link yfiles.input.IPortCandidateProvider} interface that returns the ports that exist in the
* given {@link yfiles.graph.IPortOwner#ports}'s {@link yfiles.graph.IPortOwner} collection.
* @param owner The owner of the port collection.
- * @returns
+ * @returns
* @static
*/
fromExistingPorts?(owner:yfiles.graph.IPortOwner):yfiles.input.IPortCandidateProvider;
@@ -34419,7 +34419,7 @@ declare namespace yfiles{
* Creates a trivial implementation of an {@link yfiles.input.IPortCandidateProvider} that always returns exactly one candidate
* that is centered at the node's {@link yfiles.graph.INode#layout}.
* @param node The node to get the layout's center from.
- * @returns
+ * @returns
* @static
*/
fromNodeCenter?(node:yfiles.graph.INode):yfiles.input.PortCandidateProviderBase;
@@ -34427,7 +34427,7 @@ declare namespace yfiles{
* Creates a simple implementation of an {@link yfiles.input.IPortCandidateProvider} that always returns a candidate that uses the
* default {@link yfiles.graph.IPortDefaults#locationParameter} for the corresponding {@link yfiles.graph.IPortDefaults}.
* @param owner
- * @returns
+ * @returns
* @static
*/
fromPortDefaults?(owner:yfiles.graph.IPortOwner):yfiles.input.IPortCandidateProvider;
@@ -34439,7 +34439,7 @@ declare namespace yfiles{
* @param ratios A number of double values that are interpreted as ratio values between 0.0 and 1.0. If none are given, the provider
* inserts a port candidate at the center of each straight line segment.
* @param addExistingPortsEnabled determines whether {@link #addExistingPorts existing ports should be added to the list of ports}.
- * @returns
+ * @returns
* @static
*/
fromShapeGeometry?(owner:yfiles.graph.IPortOwner,addExistingPortsEnabled:boolean,minimumSegmentLength:number,...ratios:number[]):yfiles.input.PortCandidateProviderBase;
@@ -34449,7 +34449,7 @@ declare namespace yfiles{
* @param owner The owner to receive the shape geometry from
* @param ratios A number of double values that are interpreted as ratio values between 0.0 and 1.0. If none are given, the provider
* inserts a port candidate at the center of each straight line segment.
- * @returns
+ * @returns
* @static
*/
fromShapeGeometry?(owner:yfiles.graph.IPortOwner,...ratios:number[]):yfiles.input.PortCandidateProviderBase;
@@ -34457,7 +34457,7 @@ declare namespace yfiles{
* Creates a simple implementation of an {@link yfiles.input.IPortCandidateProvider} that returns unoccupied ports at a given
* entity.
* @param owner The owner to query the ports from.
- * @returns
+ * @returns
* @static
*/
fromUnoccupiedPorts?(owner:yfiles.graph.IPortOwner):yfiles.input.IPortCandidateProvider;
@@ -34528,7 +34528,7 @@ declare namespace yfiles{
* This instance uses the lookup mechanism of the nodes to query the providers.
*
* @param edge
- * @returns
+ * @returns
* @static
*/
fromSourceAndTarget?(edge:yfiles.graph.IEdge):yfiles.input.IEdgeReconnectionPortCandidateProvider;
@@ -35624,7 +35624,7 @@ declare namespace yfiles{
* @param type The type of the event.
* @param value The key that is subject of the event.
* @param [modifiers=yfiles.view.ModifierKeys.NONE] The state of the modifiers that must be set. This is {@link #NONE} if not set.
- * @returns
+ * @returns
* @static
*/
static create(type:yfiles.view.KeyEventType,value:yfiles.view.Key,modifiers?:yfiles.view.ModifierKeys):(eventSource:any,evt:yfiles.lang.EventArgs)=>boolean;
@@ -36198,7 +36198,7 @@ declare namespace yfiles{
* Determines whether the current location is valid to begin a bend creation gesture.
* @param source
* @param evt
- * @returns
+ * @returns
* @protected
*/
isValidBegin(source:any,evt:yfiles.lang.EventArgs):boolean;
@@ -36277,8 +36277,8 @@ declare namespace yfiles{
*/
onStopped():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -36295,7 +36295,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -36321,7 +36321,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -36702,7 +36702,7 @@ declare namespace yfiles{
* Retrieves the port owner at a given position in world coordinates.
*
* If there is a {@link yfiles.input.IHitTester.} for type {@link yfiles.graph.INode} in the lookup of this mode's {@link yfiles.input.CreateEdgeInputMode#inputModeContext} then this instance will be used for the query.
- *
+ *
*
* Otherwise this implementation calls the {@link yfiles.styles.INodeStyleRenderer#getHitTestable} method of the nodes to find hit
* nodes and uses an {@link yfiles.collections.IComparer.} to determine the first hit node.
@@ -36757,7 +36757,7 @@ declare namespace yfiles{
* {@link yfiles.input.CreateEdgeInputMode#getSourcePortCandidate}.
*
* @param location The location where the gesture was initiated.
- * @returns
+ * @returns
* @see yfiles.input.CreateEdgeInputMode#getSource
* @see yfiles.input.CreateEdgeInputMode#getSourcePortCandidateProvider
* @see yfiles.input.CreateEdgeInputMode#getSourcePortCandidate
@@ -37008,8 +37008,8 @@ declare namespace yfiles{
*/
resolveCandidates(candidates:yfiles.collections.IEnumerable,location:yfiles.geometry.Point):yfiles.collections.IEnumerable;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -37053,7 +37053,7 @@ declare namespace yfiles{
*/
updateTargetLocation(location:yfiles.geometry.Point):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -37079,7 +37079,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -38194,7 +38194,7 @@ declare namespace yfiles{
*
* This method determines the label owner to add to and delegates to {@link yfiles.input.GraphEditorInputMode#createLabel}.
*
- * @returns
+ * @returns
* @protected
*/
onAddLabel():boolean;
@@ -38259,7 +38259,7 @@ declare namespace yfiles{
* This method determines the label to edit and delegates to either {@link yfiles.input.GraphEditorInputMode#editLabel} or {@link yfiles.input.GraphEditorInputMode#createLabel}
* if no label could be found.
*
- * @returns
+ * @returns
* @protected
*/
onEditLabel():boolean;
@@ -39706,7 +39706,7 @@ declare namespace yfiles{
*/
previewGraph:yfiles.graph.IGraph;
static $class:yfiles.lang.Class;
- static isInstance(o:any):o is yfiles.input.ItemDropInputMode;
+ static isInstance(o:any):o is yfiles.input.ItemDropInputMode;
}
/**
* An implementation of {@link yfiles.input.IPositionHandler} that shows the various label position candidates and lets the user
@@ -39722,7 +39722,7 @@ declare namespace yfiles{
*/
constructor(label:yfiles.graph.ILabel);
/**
- *
+ *
* @param context
* @param originalLocation
*/
@@ -39736,7 +39736,7 @@ declare namespace yfiles{
*/
createCandidateDescriptor(context:yfiles.input.IInputModeContext,highlight:boolean):yfiles.view.ICanvasObjectDescriptor;
/**
- *
+ *
* @param context
* @param originalLocation
* @param newLocation
@@ -39758,14 +39758,14 @@ declare namespace yfiles{
*/
getParameterCandidates(label:yfiles.graph.ILabel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param context
* @param originalLocation
* @param newLocation
*/
handleMove(context:yfiles.input.IInputModeContext,originalLocation:yfiles.geometry.Point,newLocation:yfiles.geometry.Point):void;
/**
- *
+ *
* @param context
*/
initializeDrag(context:yfiles.input.IInputModeContext):void;
@@ -39777,7 +39777,7 @@ declare namespace yfiles{
*/
setLayoutParameter(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):void;
/**
- *
+ *
* @param location
*/
setPosition(location:yfiles.geometry.Point):void;
@@ -39787,7 +39787,7 @@ declare namespace yfiles{
* This implementation returns true if the {@link yfiles.input.LabelPositionHandler#useFinder} property is true and the control key is pressed.
*
* @param context The context that is currently being used - may be null if the method is called without context.
- * @returns
+ * @returns
* @protected
*/
useParameterFinder(context:yfiles.input.IInputModeContext):boolean;
@@ -39829,7 +39829,7 @@ declare namespace yfiles{
*/
label:yfiles.graph.ILabel;
/**
- *
+ *
* @type {yfiles.geometry.IPoint}
*/
location:yfiles.geometry.IPoint;
@@ -39918,7 +39918,7 @@ declare namespace yfiles{
*/
addSnapLines(snapContext:yfiles.input.LabelSnapContext,inputModeContext:yfiles.input.IInputModeContext,label:yfiles.graph.ILabel):void;
/**
- *
+ *
* @param context
* @param evt
* @param suggestedLayout
@@ -40691,7 +40691,7 @@ declare namespace yfiles{
*
* @param context The input mode context.
* @param bend The bend that is designated for removal.
- * @returns
+ * @returns
* @protected
*/
canRemoveBend(context:yfiles.input.IInputModeContext,bend:yfiles.graph.IBend):boolean;
@@ -40768,7 +40768,7 @@ declare namespace yfiles{
*/
constructor(port:yfiles.graph.IPort);
/**
- *
+ *
* @param context
* @param originalLocation
*/
@@ -40785,7 +40785,7 @@ declare namespace yfiles{
*/
collectSnapResults(source:any,evt:yfiles.input.CollectSnapResultsEventArgs):void;
/**
- *
+ *
* @param context
* @param originalLocation
* @param newLocation
@@ -40821,14 +40821,14 @@ declare namespace yfiles{
*/
getNewParameter(port:yfiles.graph.IPort,model:yfiles.graph.IPortLocationModel,location:yfiles.geometry.Point):yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @param context
* @param originalLocation
* @param newLocation
*/
handleMove(context:yfiles.input.IInputModeContext,originalLocation:yfiles.geometry.Point,newLocation:yfiles.geometry.Point):void;
/**
- *
+ *
* @param context
*/
initializeDrag(context:yfiles.input.IInputModeContext):void;
@@ -40841,7 +40841,7 @@ declare namespace yfiles{
*/
setParameter(graph:yfiles.graph.IGraph,port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):void;
/**
- *
+ *
* @type {yfiles.geometry.IPoint}
*/
location:yfiles.geometry.IPoint;
@@ -40874,32 +40874,32 @@ declare namespace yfiles{
export class ReparentNodeHandler {
constructor();
/**
- *
+ *
* @param context
* @param node
- * @returns
+ * @returns
*/
isReparentGesture(context:yfiles.input.IInputModeContext,node:yfiles.graph.INode):boolean;
/**
- *
+ *
* @param context
* @param node
* @param newParent
- * @returns
+ * @returns
*/
isValidParent(context:yfiles.input.IInputModeContext,node:yfiles.graph.INode,newParent:yfiles.graph.INode):boolean;
/**
- *
+ *
* @param context
* @param node
* @param newParent
*/
reparent(context:yfiles.input.IInputModeContext,node:yfiles.graph.INode,newParent:yfiles.graph.INode):void;
/**
- *
+ *
* @param context
* @param node
- * @returns
+ * @returns
*/
shouldReparent(context:yfiles.input.IInputModeContext,node:yfiles.graph.INode):boolean;
/**
@@ -41139,7 +41139,7 @@ declare namespace yfiles{
*/
collectSnapLineSnapResults(context:yfiles.input.GraphSnapContext,evt:yfiles.input.CollectSnapResultsEventArgs,suggestedLayout:yfiles.geometry.Rect,node:yfiles.graph.INode):void;
/**
- *
+ *
* @param context
* @param evt
* @param suggestedLayout
@@ -41305,7 +41305,7 @@ declare namespace yfiles{
* @param node The node that is being reshaped.
* @param reshapeContext The reshape context that contains information about the nature of the resize.
* @param suggestedLayout The layout of the node as it would be if the mouse location would not be snapped.
- * @returns
+ * @returns
* @protected
*/
getSnapLines(context:yfiles.input.GraphSnapContext,node:yfiles.graph.INode,reshapeContext:yfiles.input.ReshapeRectangleContext,suggestedLayout:yfiles.geometry.Rect):yfiles.collections.IEnumerable;
@@ -41330,12 +41330,12 @@ declare namespace yfiles{
export interface DefaultBendCreator extends yfiles.lang.Object,yfiles.input.IBendCreator{}
export class DefaultBendCreator {
/**
- *
+ *
* @param context
* @param graph
* @param edge
* @param location
- * @returns
+ * @returns
*/
createBend(context:yfiles.input.IInputModeContext,graph:yfiles.graph.IGraph,edge:yfiles.graph.IEdge,location:yfiles.geometry.Point):number;
static $class:yfiles.lang.Class;
@@ -41407,26 +41407,26 @@ declare namespace yfiles{
* Convenience implementation that simply delegates to {@link yfiles.input.PortCandidateProviderBase#getPortCandidates}.
* @param context
* @param target
- * @returns
+ * @returns
*/
getSourcePortCandidates(context:yfiles.input.IInputModeContext,target:yfiles.input.IPortCandidate):yfiles.collections.IEnumerable;
/**
* Convenience implementation that simply delegates to {@link yfiles.input.PortCandidateProviderBase#getPortCandidates}.
* @param context
- * @returns
+ * @returns
*/
getSourcePortCandidates(context:yfiles.input.IInputModeContext):yfiles.collections.IEnumerable;
/**
* Convenience implementation that simply delegates to {@link yfiles.input.PortCandidateProviderBase#getPortCandidates}.
* @param context
* @param source
- * @returns
+ * @returns
*/
getTargetPortCandidates(context:yfiles.input.IInputModeContext,source:yfiles.input.IPortCandidate):yfiles.collections.IEnumerable;
/**
* Convenience implementation that simply delegates to {@link yfiles.input.PortCandidateProviderBase#getPortCandidates}.
* @param context
- * @returns
+ * @returns
*/
getTargetPortCandidates(context:yfiles.input.IInputModeContext):yfiles.collections.IEnumerable;
/**
@@ -41470,7 +41470,7 @@ declare namespace yfiles{
*/
constructor(graph:yfiles.graph.IGraph,edge:yfiles.graph.IEdge,sourceEnd:boolean);
/**
- *
+ *
* @param context
* @param originalLocation
*/
@@ -41515,7 +41515,7 @@ declare namespace yfiles{
*/
createPortCandidateDescriptor():yfiles.view.ICanvasObjectDescriptor;
/**
- *
+ *
* @param context
* @param originalLocation
* @param newLocation
@@ -41566,7 +41566,7 @@ declare namespace yfiles{
*/
getPortCandidates(context:yfiles.input.IInputModeContext,edge:yfiles.graph.IEdge,sourcePort:boolean):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param context
* @param originalLocation
* @param newLocation
@@ -41582,7 +41582,7 @@ declare namespace yfiles{
*/
hideOriginalEdge(context:yfiles.input.IInputModeContext,edge:yfiles.graph.IEdge):void;
/**
- *
+ *
* @param context
*/
initializeDrag(context:yfiles.input.IInputModeContext):void;
@@ -41698,12 +41698,12 @@ declare namespace yfiles{
*/
addExistingPort:boolean;
/**
- *
+ *
* @type {yfiles.input.HandleTypes}
*/
type:yfiles.input.HandleTypes;
/**
- *
+ *
* @type {yfiles.view.Cursor}
*/
cursor:yfiles.view.Cursor;
@@ -41811,9 +41811,9 @@ declare namespace yfiles{
*/
createPortRelocationHandle(graph:yfiles.graph.IGraph,edge:yfiles.graph.IEdge,sourcePort:boolean):yfiles.input.IHandle;
/**
- *
+ *
* @param context
- * @returns
+ * @returns
*/
getHandles(context:yfiles.input.IInputModeContext):yfiles.collections.IEnumerable;
/**
@@ -41856,7 +41856,7 @@ declare namespace yfiles{
/**
* Retrieves the handle implementation from the port's lookup.
* @param port
- * @returns
+ * @returns
* @protected
*/
getHandle(port:yfiles.graph.IPort):yfiles.input.IHandle;
@@ -42044,8 +42044,8 @@ declare namespace yfiles{
*/
onStopped():void;
/**
- *
- * @returns
+ *
+ * @returns
*/
tryStop():boolean;
/**
@@ -42062,7 +42062,7 @@ declare namespace yfiles{
*/
uninstall(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @type {number}
*/
priority:number;
@@ -42088,7 +42088,7 @@ declare namespace yfiles{
*/
enabled:boolean;
/**
- *
+ *
* @type {yfiles.input.IInputModeContext}
*/
inputModeContext:yfiles.input.IInputModeContext;
@@ -42434,7 +42434,7 @@ declare namespace yfiles{
*/
constructor(movedStripe:yfiles.graph.IStripe);
/**
- *
+ *
* @param context
* @param originalLocation
*/
@@ -42479,7 +42479,7 @@ declare namespace yfiles{
*/
determineGesture(context:yfiles.input.IInputModeContext,location:yfiles.geometry.IPoint,sourceStripe:yfiles.graph.IStripe,targetSubregion:yfiles.input.StripeSubregion,targetBounds:yfiles.geometry.Rect):yfiles.input.StripeReparentPolicy;
/**
- *
+ *
* @param context
* @param originalLocation
* @param newLocation
@@ -42493,14 +42493,14 @@ declare namespace yfiles{
*/
getTargetSubregion(location:yfiles.geometry.Point):yfiles.input.StripeSubregion;
/**
- *
+ *
* @param context
* @param originalLocation
* @param newLocation
*/
handleMove(context:yfiles.input.IInputModeContext,originalLocation:yfiles.geometry.Point,newLocation:yfiles.geometry.Point):void;
/**
- *
+ *
* @param context
*/
initializeDrag(context:yfiles.input.IInputModeContext):void;
@@ -42511,7 +42511,7 @@ declare namespace yfiles{
*/
onStripeChanged(evt:yfiles.graph.StripeEventArgs):void;
/**
- *
+ *
* @param location
*/
setPosition(location:yfiles.geometry.Point):void;
@@ -42524,7 +42524,7 @@ declare namespace yfiles{
* @param targetVisualization The canvas object for the target visualization
* @param targetStripe The target for the reparent gesture
* @param reparentPosition Where to place the stripe after reparenting.
- * @returns
+ * @returns
* @protected
*/
updateSourceVisualization(context:yfiles.input.IInputModeContext,targetVisualization:yfiles.view.ICanvasObject,targetStripe:yfiles.graph.IStripe,reparentPosition:yfiles.input.StripeReparentPolicy):yfiles.view.ICanvasObject;
@@ -42540,7 +42540,7 @@ declare namespace yfiles{
* @param reparentPosition The mode the describes the results of the reparent gesture.
* @param targetBounds The current visualization bounds that have been computed with
* {@link #updateTargetVisualizationBounds}
- * @returns
+ * @returns
* @protected
*/
updateTargetVisualization(context:yfiles.input.IInputModeContext,targetVisualization:yfiles.view.ICanvasObject,targetStripe:yfiles.graph.IStripe,reparentPosition:yfiles.input.StripeReparentPolicy,targetBounds:yfiles.geometry.Rect):yfiles.view.ICanvasObject;
@@ -42554,7 +42554,7 @@ declare namespace yfiles{
*/
updateTargetVisualizationBounds(originalTargetBounds:yfiles.geometry.Rect,reparentPosition:yfiles.input.StripeReparentPolicy,targetStripe:yfiles.graph.IStripe):yfiles.geometry.Rect;
/**
- *
+ *
* @type {yfiles.geometry.IPoint}
*/
location:yfiles.geometry.IPoint;
@@ -42614,7 +42614,7 @@ declare namespace yfiles{
constructor();
/**
* Create a preview version of the table that is temporarily used to show the dragged stripe.
- * @returns
+ * @returns
* @protected
*/
createPreviewTable():yfiles.graph.ITable;
@@ -42771,13 +42771,13 @@ declare namespace yfiles{
clearSelection():void;
/**
* Factory method that creates the {@link yfiles.input.TableEditorInputMode#keyboardInputMode} instance.
- * @returns
+ * @returns
* @protected
*/
createClickInputMode():yfiles.input.ClickInputMode;
/**
* Factory method that creates the {@link yfiles.input.TableEditorInputMode#keyboardInputMode} instance.
- * @returns
+ * @returns
* @protected
*/
createKeyboardInputMode():yfiles.input.KeyboardInputMode;
@@ -42877,7 +42877,7 @@ declare namespace yfiles{
* handlers or {@link yfiles.input.IEditLabelHelper}s.
*
* @param label The label to edit.
- * @returns
+ * @returns
* @see yfiles.input.TableEditorInputMode#onLabelTextEdited
*/
editLabel(label:yfiles.graph.ILabel):Promise;
@@ -42917,7 +42917,7 @@ declare namespace yfiles{
*
* This method determines the label owner to add to and delegates to {@link yfiles.input.TableEditorInputMode#createLabel}.
*
- * @returns
+ * @returns
* @protected
*/
onAddLabel():boolean;
@@ -42968,7 +42968,7 @@ declare namespace yfiles{
* This method determines the label to edit and delegates to either {@link yfiles.input.TableEditorInputMode#editLabel} or {@link yfiles.input.TableEditorInputMode#createLabel}
* if no label could be found.
*
- * @returns
+ * @returns
* @protected
*/
onEditLabel():boolean;
@@ -43567,25 +43567,25 @@ declare namespace yfiles{
*/
constructor(coreHandler:yfiles.input.IReshapeHandler,tableNode:yfiles.graph.INode,table:yfiles.graph.ITable);
/**
- *
+ *
* @param context
* @param originalBounds
*/
cancelReshape(context:yfiles.input.IInputModeContext,originalBounds:yfiles.geometry.Rect):void;
/**
- *
+ *
* @param context
* @param originalBounds
* @param newBounds
*/
handleReshape(context:yfiles.input.IInputModeContext,originalBounds:yfiles.geometry.Rect,newBounds:yfiles.geometry.Rect):void;
/**
- *
+ *
* @param context
*/
initializeReshape(context:yfiles.input.IInputModeContext):void;
/**
- *
+ *
* @param context
* @param originalBounds
* @param newBounds
@@ -43607,7 +43607,7 @@ declare namespace yfiles{
*/
table:yfiles.graph.ITable;
/**
- *
+ *
* @type {yfiles.geometry.IRectangle}
*/
bounds:yfiles.geometry.IRectangle;
@@ -44070,30 +44070,30 @@ declare namespace yfiles{
*/
createFromTarget(bendIndex:number):yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @param owner
* @param location
- * @returns
+ * @returns
*/
createParameter(owner:yfiles.graph.IPortOwner,location:yfiles.geometry.Point):yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @param port
* @param locationParameter
- * @returns
+ * @returns
*/
getContext(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param port
* @param locationParameter
- * @returns
+ * @returns
*/
getLocation(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):yfiles.geometry.Point;
/**
* This implementation has nothing in its lookup and will always yield null
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -44161,17 +44161,17 @@ declare namespace yfiles{
*/
findBestParameter(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel,layout:yfiles.geometry.IOrientedRectangle):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
@@ -44186,9 +44186,9 @@ declare namespace yfiles{
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -44221,9 +44221,9 @@ declare namespace yfiles{
*/
constructor(owner:yfiles.graph.IEdge,location:yfiles.geometry.IPoint);
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -44258,7 +44258,7 @@ declare namespace yfiles{
*/
y:number;
/**
- *
+ *
* @type {any}
*/
tag:any;
@@ -44296,9 +44296,9 @@ declare namespace yfiles{
*/
constructor(sourcePort:yfiles.graph.IPort,targetPort:yfiles.graph.IPort);
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -44345,7 +44345,7 @@ declare namespace yfiles{
*/
labels:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {any}
*/
tag:any;
@@ -44407,26 +44407,26 @@ declare namespace yfiles{
*/
constructor(options?:{edgeDefaults?:yfiles.graph.IEdgeDefaults,groupNodeDefaults?:yfiles.graph.INodeDefaults,mapperRegistry?:yfiles.graph.IMapperRegistry,nodeDefaults?:yfiles.graph.INodeDefaults,undoEngineEnabled?:boolean,nodes?:Array});
/**
- *
+ *
* @param edge
* @param location
* @param [index=-1]
- * @returns
+ * @returns
*/
addBend(edge:yfiles.graph.IEdge,location:yfiles.geometry.Point,index?:number):yfiles.graph.IBend;
/**
- *
+ *
* @param owner
* @param text
* @param [layoutParameter=null]
* @param [style=null]
* @param [preferredSize=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
addLabel(owner:yfiles.graph.ILabelOwner,text:string,layoutParameter?:yfiles.graph.ILabelModelParameter,style?:yfiles.styles.ILabelStyle,preferredSize?:yfiles.geometry.Size,tag?:any):yfiles.graph.ILabel;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.owner
* @param options.text
@@ -44434,7 +44434,7 @@ declare namespace yfiles{
* @param [options.style=null]
* @param [options.preferredSize=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
addLabel(options:{owner:yfiles.graph.ILabelOwner,text:string,layoutParameter?:yfiles.graph.ILabelModelParameter,style?:yfiles.styles.ILabelStyle,preferredSize?:yfiles.geometry.Size,tag?:Object}):yfiles.graph.ILabel;
/**
@@ -44474,22 +44474,22 @@ declare namespace yfiles{
*/
contains(item:yfiles.graph.IModelItem):boolean;
/**
- *
+ *
* @param sourcePort
* @param targetPort
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createEdge(sourcePort:yfiles.graph.IPort,targetPort:yfiles.graph.IPort,style?:yfiles.styles.IEdgeStyle,tag?:any):yfiles.graph.IEdge;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.sourcePort
* @param options.targetPort
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createEdge(options:{sourcePort:yfiles.graph.IPort,targetPort:yfiles.graph.IPort,style?:yfiles.styles.IEdgeStyle,tag?:Object}):yfiles.graph.IEdge;
/**
@@ -44538,58 +44538,58 @@ declare namespace yfiles{
*/
createEdge(options:{source:yfiles.graph.INode,target:yfiles.graph.INode,style?:yfiles.styles.IEdgeStyle,tag?:Object}):yfiles.graph.IEdge;
/**
- *
+ *
* @param [parent=null]
* @param [layout=null]
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createGroupNode(parent?:yfiles.graph.INode,layout?:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:any):yfiles.graph.INode;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param [options.parent=null]
* @param [options.layout=null]
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createGroupNode(options:{parent?:yfiles.graph.INode,layout?:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:Object}):yfiles.graph.INode;
/**
- *
+ *
* @param layout
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createNode(layout:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:any):yfiles.graph.INode;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.layout
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createNode(options:{layout:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:Object}):yfiles.graph.INode;
/**
- *
+ *
* @param [parent=null]
* @param [layout=null]
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createNode(parent?:yfiles.graph.INode,layout?:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:any):yfiles.graph.INode;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param [options.parent=null]
* @param [options.layout=null]
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createNode(options:{parent?:yfiles.graph.INode,layout?:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:Object}):yfiles.graph.INode;
/**
@@ -44699,23 +44699,23 @@ declare namespace yfiles{
*/
createUndoUnitForPortRemoval(port:yfiles.graph.IPort):yfiles.graph.IUndoUnit;
/**
- *
+ *
* @param owner
* @param [type=yfiles.graph.AdjacencyTypes.ALL]
- * @returns
+ * @returns
*/
edgesAt(owner:yfiles.graph.IPortOwner,type?:yfiles.graph.AdjacencyTypes):yfiles.collections.IListEnumerable;
/**
- *
+ *
* @param port
* @param [type=yfiles.graph.AdjacencyTypes.ALL]
- * @returns
+ * @returns
*/
edgesAt(port:yfiles.graph.IPort,type?:yfiles.graph.AdjacencyTypes):yfiles.collections.IListEnumerable;
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
getChildren(node:yfiles.graph.INode):yfiles.collections.IListEnumerable;
/**
@@ -44749,15 +44749,15 @@ declare namespace yfiles{
*/
getNewTargetPort(targetOwner:yfiles.graph.IPortOwner):yfiles.graph.IPort;
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
getParent(node:yfiles.graph.INode):yfiles.graph.INode;
/**
* The last element in the lookup chain is implemented by this method.
* @param type
- * @returns
+ * @returns
* @protected
*/
innerLookup(type:yfiles.lang.Class):any;
@@ -44770,9 +44770,9 @@ declare namespace yfiles{
*/
invalidateDisplays():void;
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
isGroupNode(node:yfiles.graph.INode):boolean;
/**
@@ -45221,7 +45221,7 @@ declare namespace yfiles{
*/
onRemovingPort(port:yfiles.graph.IPort):void;
/**
- *
+ *
* @param item
*/
remove(item:yfiles.graph.IModelItem):void;
@@ -45254,19 +45254,19 @@ declare namespace yfiles{
*/
setEdgePorts(edge:yfiles.graph.IEdge,sourcePort:yfiles.graph.IPort,targetPort:yfiles.graph.IPort):void;
/**
- *
+ *
* @param node
* @param isGroupNode
*/
setIsGroupNode(node:yfiles.graph.INode,isGroupNode:boolean):void;
/**
- *
+ *
* @param label
* @param layoutParameter
*/
setLabelLayoutParameter(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):void;
/**
- *
+ *
* @param label
* @param size
*/
@@ -45305,25 +45305,25 @@ declare namespace yfiles{
*/
setNodeLayout(node:yfiles.graph.INode,layout:yfiles.geometry.Rect):void;
/**
- *
+ *
* @param node
* @param parent
*/
setParent(node:yfiles.graph.INode,parent:yfiles.graph.INode):void;
/**
- *
+ *
* @param port
* @param locationParameter
*/
setPortLocationParameter(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):void;
/**
- *
+ *
* @param port
* @param style
*/
setStyle(port:yfiles.graph.IPort,style:yfiles.styles.IPortStyle):void;
/**
- *
+ *
* @param edge
* @param style
*/
@@ -45433,342 +45433,342 @@ declare namespace yfiles{
*/
undoEngineEnabled:boolean;
/**
- *
+ *
* @type {yfiles.graph.IEdgeDefaults}
*/
edgeDefaults:yfiles.graph.IEdgeDefaults;
/**
- *
+ *
* @type {yfiles.graph.INodeDefaults}
*/
nodeDefaults:yfiles.graph.INodeDefaults;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
nodes:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
labels:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
ports:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
edges:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @param listener
*/
addGraphTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeGraphTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeRemovedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeRemovedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeLayoutChangedListener(listener:(source:any,node:yfiles.graph.INode,oldLayout:yfiles.geometry.Rect)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeLayoutChangedListener(listener:(source:any,node:yfiles.graph.INode,oldLayout:yfiles.geometry.Rect)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgeRemovedListener(listener:(sender:any,evt:yfiles.graph.EdgeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgeRemovedListener(listener:(sender:any,evt:yfiles.graph.EdgeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgeStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgeStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgePortsChangedListener(listener:(sender:any,evt:yfiles.graph.EdgeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgePortsChangedListener(listener:(sender:any,evt:yfiles.graph.EdgeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgeTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgeTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addBendAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeBendAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addBendRemovedListener(listener:(sender:any,evt:yfiles.graph.BendEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeBendRemovedListener(listener:(sender:any,evt:yfiles.graph.BendEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addBendLocationChangedListener(listener:(source:any,bend:yfiles.graph.IBend,oldLocation:yfiles.geometry.Point)=>void):void;
/**
- *
+ *
* @param listener
*/
removeBendLocationChangedListener(listener:(source:any,bend:yfiles.graph.IBend,oldLocation:yfiles.geometry.Point)=>void):void;
/**
- *
+ *
* @param listener
*/
addBendTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeBendTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelRemovedListener(listener:(sender:any,evt:yfiles.graph.LabelEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelRemovedListener(listener:(sender:any,evt:yfiles.graph.LabelEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelPreferredSizeChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelPreferredSizeChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelTextChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelTextChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelLayoutParameterChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelLayoutParameterChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortRemovedListener(listener:(sender:any,evt:yfiles.graph.PortEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortRemovedListener(listener:(sender:any,evt:yfiles.graph.PortEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortLocationParameterChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortLocationParameterChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addDisplaysInvalidatedListener(listener:(sender:any,evt:yfiles.lang.EventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeDisplaysInvalidatedListener(listener:(sender:any,evt:yfiles.lang.EventArgs)=>void):void;
/**
- *
+ *
* @type {yfiles.graph.INodeDefaults}
*/
groupNodeDefaults:yfiles.graph.INodeDefaults;
/**
- *
+ *
* @param listener
*/
addParentChangedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeParentChangedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addIsGroupNodeChangedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeIsGroupNodeChangedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @type {any}
*/
tag:any;
@@ -45803,9 +45803,9 @@ declare namespace yfiles{
*/
adoptPreferredSizeFromStyle():void;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -45856,7 +45856,7 @@ declare namespace yfiles{
*/
preferredSize:yfiles.geometry.Size;
/**
- *
+ *
* @type {any}
*/
tag:any;
@@ -45895,9 +45895,9 @@ declare namespace yfiles{
*/
constructor();
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -45930,7 +45930,7 @@ declare namespace yfiles{
*/
labels:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {any}
*/
tag:any;
@@ -45968,9 +45968,9 @@ declare namespace yfiles{
*/
constructor(owner:yfiles.graph.IPortOwner,locationParameter:yfiles.graph.IPortLocationModelParameter);
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -46009,7 +46009,7 @@ declare namespace yfiles{
*/
owner:yfiles.graph.IPortOwner;
/**
- *
+ *
* @type {any}
*/
tag:any;
@@ -46064,37 +46064,37 @@ declare namespace yfiles{
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getDescriptor(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILabelCandidateDescriptor;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param label
* @param model
- * @returns
+ * @returns
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -46259,7 +46259,7 @@ declare namespace yfiles{
*
* Returns a model parameter that encodes the default position of this model's allowed edge label positions.
*
- * @returns
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
@@ -46278,9 +46278,9 @@ declare namespace yfiles{
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -46405,7 +46405,7 @@ declare namespace yfiles{
*
* Returns a model parameter that encodes the default position of this model's allowed edge label positions.
*
- * @returns
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
@@ -46445,9 +46445,9 @@ declare namespace yfiles{
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -46602,8 +46602,8 @@ declare namespace yfiles{
*/
constructor(options?:{insets?:yfiles.geometry.Insets});
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
@@ -46613,30 +46613,30 @@ declare namespace yfiles{
*/
createParameter(position:yfiles.graph.ExteriorLabelModelPosition):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param label
* @param model
- * @returns
+ * @returns
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -46800,22 +46800,22 @@ declare namespace yfiles{
*/
edgePredicate:(obj:yfiles.graph.IEdge)=>boolean;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
nodes:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
edges:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
labels:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
ports:yfiles.collections.IListEnumerable;
@@ -46834,8 +46834,8 @@ declare namespace yfiles{
export interface FreeEdgeLabelModel extends yfiles.lang.Object,yfiles.graph.ILabelModelParameterFinder,yfiles.graph.ILabelModel{}
export class FreeEdgeLabelModel {
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
@@ -46860,23 +46860,23 @@ declare namespace yfiles{
*/
findBestParameter(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel,layout:yfiles.geometry.IOrientedRectangle):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -46926,8 +46926,8 @@ declare namespace yfiles{
*/
createAnchored(location:yfiles.geometry.IPoint,angle:number):yfiles.graph.ILabelModelParameter;
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
@@ -46937,23 +46937,23 @@ declare namespace yfiles{
*/
createDynamic(layout:yfiles.geometry.IOrientedRectangle):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -47038,10 +47038,10 @@ declare namespace yfiles{
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
@@ -47074,10 +47074,10 @@ declare namespace yfiles{
export interface FreeNodePortLocationModel extends yfiles.lang.Object,yfiles.graph.IPortLocationModel{}
export class FreeNodePortLocationModel {
/**
- *
+ *
* @param owner
* @param location
- * @returns
+ * @returns
*/
createParameter(owner:yfiles.graph.IPortOwner,location:yfiles.geometry.Point):yfiles.graph.IPortLocationModelParameter;
/**
@@ -47092,23 +47092,23 @@ declare namespace yfiles{
*/
createParameterForRatios(ratios:yfiles.geometry.Point,offset?:yfiles.geometry.Point):yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @param port
* @param locationParameter
- * @returns
+ * @returns
*/
getContext(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param port
* @param locationParameter
- * @returns
+ * @returns
*/
getLocation(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):yfiles.geometry.Point;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -47259,15 +47259,15 @@ declare namespace yfiles{
*/
addParameter(layoutParameter:yfiles.graph.ILabelModelParameter,descriptor?:yfiles.graph.ILabelCandidateDescriptor):yfiles.graph.ILabelModelParameter;
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
@@ -47279,9 +47279,9 @@ declare namespace yfiles{
*/
getDescriptor(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILabelCandidateDescriptor;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
static $class:yfiles.lang.Class;
@@ -47347,23 +47347,23 @@ declare namespace yfiles{
*/
createParameter(owner:yfiles.graph.IPortOwner,location:yfiles.geometry.Point):yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @param port
* @param locationParameter
- * @returns
+ * @returns
*/
getContext(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param port
* @param locationParameter
- * @returns
+ * @returns
*/
getLocation(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):yfiles.geometry.Point;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -47732,7 +47732,7 @@ declare namespace yfiles{
*
* Custom ID can be used to map between elements in different graphs.
*
- * @returns
+ * @returns
* @protected
*/
createDefaultClipboardIdProvider():yfiles.graph.IClipboardIdProvider;
@@ -47835,7 +47835,7 @@ declare namespace yfiles{
* @param coreFilter The core predicate for the base set of elements.
* @param graph The graph to use for determining adjacency.
* @param restrictive Whether to create a restriction or extension for the coreFilter predicate
- * @returns
+ * @returns
* @static
*/
static createWrappedFilter(coreFilter:(obj:yfiles.graph.IModelItem)=>boolean,graph:yfiles.graph.IGraph,restrictive:boolean):(obj:yfiles.graph.IModelItem)=>boolean;
@@ -50609,13 +50609,13 @@ declare namespace yfiles{
/**
* Determines the nearest common ancestor of the provided nodes in the graph.
* @param nodes The nodes to find the nearest common ancestor of.
- * @returns
+ * @returns
*/
getNearestCommonAncestor(...nodes:yfiles.graph.INode[]):yfiles.graph.INode;
/**
* Determines the nearest common ancestor of the provided nodes in the graph.
* @param nodes The nodes to find the nearest common ancestor of.
- * @returns
+ * @returns
*/
getNearestCommonAncestor(nodes:yfiles.collections.IEnumerable):yfiles.graph.INode;
/**
@@ -50665,11 +50665,11 @@ declare namespace yfiles{
*/
constructor(graph:yfiles.graph.IGraph);
/**
- *
+ *
* @param edge
* @param location
* @param [index=-1]
- * @returns
+ * @returns
*/
addBend(edge:yfiles.graph.IEdge,location:yfiles.geometry.Point,index?:number):yfiles.graph.IBend;
/**
@@ -50679,18 +50679,18 @@ declare namespace yfiles{
*/
addEventHandlers(graph:yfiles.graph.IGraph):void;
/**
- *
+ *
* @param owner
* @param text
* @param [layoutParameter=null]
* @param [style=null]
* @param [preferredSize=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
addLabel(owner:yfiles.graph.ILabelOwner,text:string,layoutParameter?:yfiles.graph.ILabelModelParameter,style?:yfiles.styles.ILabelStyle,preferredSize?:yfiles.geometry.Size,tag?:any):yfiles.graph.ILabel;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.owner
* @param options.text
@@ -50698,125 +50698,125 @@ declare namespace yfiles{
* @param [options.style=null]
* @param [options.preferredSize=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
addLabel(options:{owner:yfiles.graph.ILabelOwner,text:string,layoutParameter?:yfiles.graph.ILabelModelParameter,style?:yfiles.styles.ILabelStyle,preferredSize?:yfiles.geometry.Size,tag?:Object}):yfiles.graph.ILabel;
/**
- *
+ *
* @param owner
* @param [locationParameter=null]
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
addPort(owner:yfiles.graph.IPortOwner,locationParameter?:yfiles.graph.IPortLocationModelParameter,style?:yfiles.styles.IPortStyle,tag?:any):yfiles.graph.IPort;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.owner
* @param [options.locationParameter=null]
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
addPort(options:{owner:yfiles.graph.IPortOwner,locationParameter?:yfiles.graph.IPortLocationModelParameter,style?:yfiles.styles.IPortStyle,tag?:Object}):yfiles.graph.IPort;
/**
- *
+ *
* @param item
- * @returns
+ * @returns
*/
contains(item:yfiles.graph.IModelItem):boolean;
/**
- *
+ *
* @param source
* @param target
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createEdge(source:yfiles.graph.INode,target:yfiles.graph.INode,style?:yfiles.styles.IEdgeStyle,tag?:any):yfiles.graph.IEdge;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.source
* @param options.target
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createEdge(options:{source:yfiles.graph.INode,target:yfiles.graph.INode,style?:yfiles.styles.IEdgeStyle,tag?:Object}):yfiles.graph.IEdge;
/**
- *
+ *
* @param sourcePort
* @param targetPort
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createEdge(sourcePort:yfiles.graph.IPort,targetPort:yfiles.graph.IPort,style?:yfiles.styles.IEdgeStyle,tag?:any):yfiles.graph.IEdge;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.sourcePort
* @param options.targetPort
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createEdge(options:{sourcePort:yfiles.graph.IPort,targetPort:yfiles.graph.IPort,style?:yfiles.styles.IEdgeStyle,tag?:Object}):yfiles.graph.IEdge;
/**
- *
+ *
* @param [parent=null]
* @param [layout=null]
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createGroupNode(parent?:yfiles.graph.INode,layout?:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:any):yfiles.graph.INode;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param [options.parent=null]
* @param [options.layout=null]
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createGroupNode(options:{parent?:yfiles.graph.INode,layout?:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:Object}):yfiles.graph.INode;
/**
- *
+ *
* @param layout
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createNode(layout:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:any):yfiles.graph.INode;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.layout
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createNode(options:{layout:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:Object}):yfiles.graph.INode;
/**
- *
+ *
* @param [parent=null]
* @param [layout=null]
* @param [style=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
createNode(parent?:yfiles.graph.INode,layout?:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:any):yfiles.graph.INode;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param [options.parent=null]
* @param [options.layout=null]
* @param [options.style=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
createNode(options:{parent?:yfiles.graph.INode,layout?:yfiles.geometry.Rect,style?:yfiles.styles.INodeStyle,tag?:Object}):yfiles.graph.INode;
/**
@@ -50828,50 +50828,50 @@ declare namespace yfiles{
*/
dispose():void;
/**
- *
+ *
* @param owner
* @param [type=yfiles.graph.AdjacencyTypes.ALL]
- * @returns
+ * @returns
*/
edgesAt(owner:yfiles.graph.IPortOwner,type?:yfiles.graph.AdjacencyTypes):yfiles.collections.IListEnumerable;
/**
- *
+ *
* @param port
* @param [type=yfiles.graph.AdjacencyTypes.ALL]
- * @returns
+ * @returns
*/
edgesAt(port:yfiles.graph.IPort,type?:yfiles.graph.AdjacencyTypes):yfiles.collections.IListEnumerable;
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
getChildren(node:yfiles.graph.INode):yfiles.collections.IListEnumerable;
/**
* Gets the lookup instance to use in {@link yfiles.graph.GraphWrapperBase#lookup}
- * @returns
+ * @returns
*/
getLookup():yfiles.graph.ILookup;
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
getParent(node:yfiles.graph.INode):yfiles.graph.INode;
/**
- *
+ *
*/
invalidateDisplays():void;
/**
- *
+ *
* @param node
- * @returns
+ * @returns
*/
isGroupNode(node:yfiles.graph.INode):boolean;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -51068,7 +51068,7 @@ declare namespace yfiles{
*/
onPortTagChanged(evt:yfiles.graph.ItemChangedEventArgs):void;
/**
- *
+ *
* @param item
*/
remove(item:yfiles.graph.IModelItem):void;
@@ -51079,38 +51079,38 @@ declare namespace yfiles{
*/
removeEventHandlers(graph:yfiles.graph.IGraph):void;
/**
- *
+ *
* @param bend
* @param location
*/
setBendLocation(bend:yfiles.graph.IBend,location:yfiles.geometry.Point):void;
/**
- *
+ *
* @param edge
* @param sourcePort
* @param targetPort
*/
setEdgePorts(edge:yfiles.graph.IEdge,sourcePort:yfiles.graph.IPort,targetPort:yfiles.graph.IPort):void;
/**
- *
+ *
* @param node
* @param isGroupNode
*/
setIsGroupNode(node:yfiles.graph.INode,isGroupNode:boolean):void;
/**
- *
+ *
* @param label
* @param layoutParameter
*/
setLabelLayoutParameter(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):void;
/**
- *
+ *
* @param label
* @param preferredSize
*/
setLabelPreferredSize(label:yfiles.graph.ILabel,preferredSize:yfiles.geometry.Size):void;
/**
- *
+ *
* @param label
* @param text
*/
@@ -51121,43 +51121,43 @@ declare namespace yfiles{
*/
setLookup(lookup:yfiles.graph.ILookup):void;
/**
- *
+ *
* @param node
* @param layout
*/
setNodeLayout(node:yfiles.graph.INode,layout:yfiles.geometry.Rect):void;
/**
- *
+ *
* @param node
* @param parent
*/
setParent(node:yfiles.graph.INode,parent:yfiles.graph.INode):void;
/**
- *
+ *
* @param port
* @param locationParameter
*/
setPortLocationParameter(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):void;
/**
- *
+ *
* @param port
* @param style
*/
setStyle(port:yfiles.graph.IPort,style:yfiles.styles.IPortStyle):void;
/**
- *
+ *
* @param edge
* @param style
*/
setStyle(edge:yfiles.graph.IEdge,style:yfiles.styles.IEdgeStyle):void;
/**
- *
+ *
* @param label
* @param style
*/
setStyle(label:yfiles.graph.ILabel,style:yfiles.styles.ILabelStyle):void;
/**
- *
+ *
* @param node
* @param style
*/
@@ -51168,347 +51168,347 @@ declare namespace yfiles{
*/
wrappedGraph:yfiles.graph.IGraph;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
nodes:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
edges:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
labels:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.collections.IListEnumerable.}
*/
ports:yfiles.collections.IListEnumerable;
/**
- *
+ *
* @type {yfiles.graph.IEdgeDefaults}
*/
edgeDefaults:yfiles.graph.IEdgeDefaults;
/**
- *
+ *
* @type {yfiles.graph.INodeDefaults}
*/
nodeDefaults:yfiles.graph.INodeDefaults;
/**
- *
+ *
* @param listener
*/
addGraphTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeGraphTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeRemovedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeRemovedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeLayoutChangedListener(listener:(source:any,node:yfiles.graph.INode,oldLayout:yfiles.geometry.Rect)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeLayoutChangedListener(listener:(source:any,node:yfiles.graph.INode,oldLayout:yfiles.geometry.Rect)=>void):void;
/**
- *
+ *
* @param listener
*/
addNodeTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeNodeTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgeRemovedListener(listener:(sender:any,evt:yfiles.graph.EdgeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgeRemovedListener(listener:(sender:any,evt:yfiles.graph.EdgeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgeStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgeStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgePortsChangedListener(listener:(sender:any,evt:yfiles.graph.EdgeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgePortsChangedListener(listener:(sender:any,evt:yfiles.graph.EdgeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addEdgeTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeEdgeTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addBendAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeBendAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addBendRemovedListener(listener:(sender:any,evt:yfiles.graph.BendEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeBendRemovedListener(listener:(sender:any,evt:yfiles.graph.BendEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addBendLocationChangedListener(listener:(source:any,bend:yfiles.graph.IBend,oldLocation:yfiles.geometry.Point)=>void):void;
/**
- *
+ *
* @param listener
*/
removeBendLocationChangedListener(listener:(source:any,bend:yfiles.graph.IBend,oldLocation:yfiles.geometry.Point)=>void):void;
/**
- *
+ *
* @param listener
*/
addBendTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeBendTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelRemovedListener(listener:(sender:any,evt:yfiles.graph.LabelEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelRemovedListener(listener:(sender:any,evt:yfiles.graph.LabelEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelPreferredSizeChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelPreferredSizeChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelTextChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelTextChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelLayoutParameterChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelLayoutParameterChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortRemovedListener(listener:(sender:any,evt:yfiles.graph.PortEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortRemovedListener(listener:(sender:any,evt:yfiles.graph.PortEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortStyleChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortLocationParameterChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortLocationParameterChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addPortTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removePortTagChangedListener(listener:(sender:any,evt:yfiles.graph.ItemChangedEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addDisplaysInvalidatedListener(listener:(sender:any,evt:yfiles.lang.EventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeDisplaysInvalidatedListener(listener:(sender:any,evt:yfiles.lang.EventArgs)=>void):void;
/**
- *
+ *
* @type {yfiles.graph.IMapperRegistry}
*/
mapperRegistry:yfiles.graph.IMapperRegistry;
/**
- *
+ *
* @type {yfiles.graph.INodeDefaults}
*/
groupNodeDefaults:yfiles.graph.INodeDefaults;
/**
- *
+ *
* @param listener
*/
addParentChangedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeParentChangedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addIsGroupNodeChangedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeIsGroupNodeChangedListener(listener:(sender:any,evt:yfiles.graph.NodeEventArgs)=>void):void;
/**
- *
+ *
* @type {any}
*/
tag:any;
@@ -54735,7 +54735,7 @@ declare namespace yfiles{
* Always yields the parameter that has been passed to the constructor.
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getDescriptor(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILabelCandidateDescriptor;
/**
@@ -54784,24 +54784,24 @@ declare namespace yfiles{
*/
static INTERNAL_DESCRIPTOR:yfiles.graph.ILabelCandidateDescriptor;
/**
- *
+ *
* @type {boolean}
*/
externalCandidate:boolean;
/**
- *
+ *
* @default 1.0
* @type {number}
*/
edgeOverlapPenalty:number;
/**
- *
+ *
* @default 1.0
* @type {number}
*/
nodeOverlapPenalty:number;
/**
- *
+ *
* @default 1.0
* @type {number}
*/
@@ -55712,28 +55712,28 @@ declare namespace yfiles{
*/
constructor(options?:{insets?:yfiles.geometry.Insets});
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
* Creates the parameter for the given position.
* @param position The position.
- * @returns
+ * @returns
*/
createParameter(position:yfiles.graph.InteriorStretchLabelModelPosition):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
@@ -55753,16 +55753,16 @@ declare namespace yfiles{
*/
getNodeInsets(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.Insets;
/**
- *
+ *
* @param label
* @param model
- * @returns
+ * @returns
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -55883,28 +55883,28 @@ declare namespace yfiles{
*/
constructor(options?:{insets?:yfiles.geometry.Insets});
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
* Creates the parameter for the given position.
* @param position The position.
- * @returns
+ * @returns
*/
createParameter(position:yfiles.graph.InteriorLabelModelPosition):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
@@ -55924,16 +55924,16 @@ declare namespace yfiles{
*/
getNodeInsets(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.Insets;
/**
- *
+ *
* @param label
* @param model
- * @returns
+ * @returns
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -56068,12 +56068,12 @@ declare namespace yfiles{
*/
static create(keyType:yfiles.lang.Class,valueType:yfiles.lang.Class,mapper:yfiles.collections.IMapper):yfiles.graph.MapperMetadata;
/**
- *
+ *
* @type {yfiles.lang.Class}
*/
keyType:yfiles.lang.Class;
/**
- *
+ *
* @type {yfiles.lang.Class}
*/
valueType:yfiles.lang.Class;
@@ -56090,7 +56090,7 @@ declare namespace yfiles{
export class MapperRegistry {
constructor();
/**
- *
+ *
* Type parameter K.
* Type parameter V.
* @param valueType
@@ -56101,33 +56101,33 @@ declare namespace yfiles{
*/
addMapper(keyType:yfiles.lang.Class,valueType:yfiles.lang.Class,tag:any,mapper:yfiles.collections.IMapper):void;
/**
- *
+ *
* Type parameter K.
* Type parameter V.
* @param tag
- * @returns
+ * @returns
* @template K,V
*/
getMapper(tag:any):yfiles.collections.IMapper;
/**
- *
+ *
* @param tag
- * @returns
+ * @returns
*/
getMapperMetadata(tag:any):yfiles.graph.MapperMetadata;
/**
- *
+ *
* @param tag
*/
removeMapper(tag:any):void;
/**
- *
+ *
* @param tag
* @param metadata
*/
setMapperMetadata(tag:any,metadata:yfiles.graph.MapperMetadata):void;
/**
- *
+ *
* @type {yfiles.collections.IEnumerable.}
*/
registeredTags:yfiles.collections.IEnumerable;
@@ -56204,8 +56204,8 @@ declare namespace yfiles{
*/
constructor(options?:{angle?:number,distance?:number});
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
@@ -56215,30 +56215,30 @@ declare namespace yfiles{
*/
createParameter(position:yfiles.graph.NinePositionsEdgeLabelModelPosition):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param label
* @param model
- * @returns
+ * @returns
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -56370,45 +56370,45 @@ declare namespace yfiles{
*/
constructor(options?:{yOffset?:number});
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
* Creates a parameter for the north side of the node.
- * @returns
+ * @returns
*/
createNorthParameter():yfiles.graph.ILabelModelParameter;
/**
* Creates a parameter for the south side of the node.
- * @returns
+ * @returns
*/
createSouthParameter():yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param label
* @param model
- * @returns
+ * @returns
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -56464,30 +56464,30 @@ declare namespace yfiles{
*/
createFromTarget(ratio:number,segmentIndex:number):yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @param owner
* @param location
- * @returns
+ * @returns
*/
createParameter(owner:yfiles.graph.IPortOwner,location:yfiles.geometry.Point):yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @param port
* @param locationParameter
- * @returns
+ * @returns
*/
getContext(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):yfiles.graph.ILookup;
/**
- *
+ *
* @param port
* @param locationParameter
- * @returns
+ * @returns
*/
getLocation(port:yfiles.graph.IPort,locationParameter:yfiles.graph.IPortLocationModelParameter):yfiles.geometry.Point;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -56541,8 +56541,8 @@ declare namespace yfiles{
*/
constructor(options?:{angle?:number,autoRotation?:boolean});
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
@@ -56566,18 +56566,18 @@ declare namespace yfiles{
*/
createParameterFromTarget(segmentIndex:number,distance:number,segmentRatio:number):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param model
* @param layout
- * @returns
+ * @returns
*/
findBestParameter(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel,layout:yfiles.geometry.IOrientedRectangle):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
@@ -56587,16 +56587,16 @@ declare namespace yfiles{
*/
getDistance(layoutParameter:yfiles.graph.ILabelModelParameter):number;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -56671,41 +56671,41 @@ declare namespace yfiles{
*/
GetDefaultStyleInstance():yfiles.styles.IPortStyle;
/**
- *
+ *
* @param owner
- * @returns
+ * @returns
*/
getLocationParameterInstance(owner:yfiles.graph.IPortOwner):yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @param owner
- * @returns
+ * @returns
*/
getStyleInstance(owner:yfiles.graph.IPortOwner):yfiles.styles.IPortStyle;
/**
- *
+ *
* @default true
* @type {boolean}
*/
autoCleanup:boolean;
/**
- *
+ *
* @type {yfiles.graph.IPortLocationModelParameter}
*/
locationParameter:yfiles.graph.IPortLocationModelParameter;
/**
- *
+ *
* @default true
* @type {boolean}
*/
shareLocationParameterInstance:boolean;
/**
- *
+ *
* @type {yfiles.styles.IPortStyle}
*/
style:yfiles.styles.IPortStyle;
/**
- *
+ *
* @default true
* @type {boolean}
*/
@@ -56731,32 +56731,32 @@ declare namespace yfiles{
*/
constructor(options?:{size?:yfiles.geometry.Size,labels?:yfiles.graph.ILabelDefaults,ports?:yfiles.graph.IPortDefaults,style?:yfiles.styles.INodeStyle,shareStyleInstance?:boolean});
/**
- *
- * @returns
+ *
+ * @returns
*/
getStyleInstance():yfiles.styles.INodeStyle;
/**
- *
+ *
* @type {yfiles.geometry.Size}
*/
size:yfiles.geometry.Size;
/**
- *
+ *
* @type {yfiles.graph.ILabelDefaults}
*/
labels:yfiles.graph.ILabelDefaults;
/**
- *
+ *
* @type {yfiles.graph.IPortDefaults}
*/
ports:yfiles.graph.IPortDefaults;
/**
- *
+ *
* @type {yfiles.styles.INodeStyle}
*/
style:yfiles.styles.INodeStyle;
/**
- *
+ *
* @default true
* @type {boolean}
*/
@@ -56781,27 +56781,27 @@ declare namespace yfiles{
*/
constructor(options?:{labels?:yfiles.graph.ILabelDefaults,ports?:yfiles.graph.IPortDefaults,style?:yfiles.styles.IEdgeStyle,shareStyleInstance?:boolean});
/**
- *
- * @returns
+ *
+ * @returns
*/
getStyleInstance():yfiles.styles.IEdgeStyle;
/**
- *
+ *
* @type {yfiles.graph.ILabelDefaults}
*/
labels:yfiles.graph.ILabelDefaults;
/**
- *
+ *
* @type {yfiles.graph.IPortDefaults}
*/
ports:yfiles.graph.IPortDefaults;
/**
- *
+ *
* @type {yfiles.styles.IEdgeStyle}
*/
style:yfiles.styles.IEdgeStyle;
/**
- *
+ *
* @default true
* @type {boolean}
*/
@@ -56827,39 +56827,39 @@ declare namespace yfiles{
*/
constructor(options?:{autoAdjustPreferredSize?:boolean,shareLayoutParameterInstance?:boolean,layoutParameter?:yfiles.graph.ILabelModelParameter,shareStyleInstance?:boolean,style?:yfiles.styles.ILabelStyle});
/**
- *
+ *
* @param owner
- * @returns
+ * @returns
*/
getLayoutParameterInstance(owner:yfiles.graph.ILabelOwner):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param owner
- * @returns
+ * @returns
*/
getStyleInstance(owner:yfiles.graph.ILabelOwner):yfiles.styles.ILabelStyle;
/**
- *
+ *
* @type {boolean}
*/
autoAdjustPreferredSize:boolean;
/**
- *
+ *
* @type {boolean}
*/
shareLayoutParameterInstance:boolean;
/**
- *
+ *
* @type {yfiles.graph.ILabelModelParameter}
*/
layoutParameter:yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @type {yfiles.styles.ILabelStyle}
*/
style:yfiles.styles.ILabelStyle;
/**
- *
+ *
* @type {boolean}
*/
shareStyleInstance:boolean;
@@ -56919,12 +56919,12 @@ declare namespace yfiles{
add(unit:yfiles.graph.IUndoUnit):void;
/**
* Determines whether a call to {@link yfiles.graph.CompositeUndoUnit#redo} can be made.
- * @returns
+ * @returns
*/
canRedo():boolean;
/**
* Determines whether a call to {@link yfiles.graph.CompositeUndoUnit#undo} can be made.
- * @returns
+ * @returns
*/
canUndo():boolean;
/**
@@ -57285,7 +57285,7 @@ declare namespace yfiles{
/**
* Determines whether this instance can be used to decorate the lookup for a certain type.
* @param t The type to decorate the lookup for.
- * @returns
+ * @returns
* @abstract
*/
canDecorate(t:yfiles.lang.Class):boolean;
@@ -57460,10 +57460,10 @@ declare namespace yfiles{
*
Customizing Undo/Redo
*
* -
- * In general, to be able to undo or redo certain work client code can implement {@link yfiles.graph.IUndoUnit} or subclass
- * {@link yfiles.graph.UndoUnitBase UndoUnitBase}. The client application needs to encapsulate
- * changes in this implementation and provide the logic to completely undo and redo these changes.
- * Instances of your custom {@link yfiles.graph.IUndoUnit} implementations need to be added to the {@link yfiles.graph.UndoEngine}
+ * In general, to be able to undo or redo certain work client code can implement {@link yfiles.graph.IUndoUnit} or subclass
+ * {@link yfiles.graph.UndoUnitBase UndoUnitBase}. The client application needs to encapsulate
+ * changes in this implementation and provide the logic to completely undo and redo these changes.
+ * Instances of your custom {@link yfiles.graph.IUndoUnit} implementations need to be added to the {@link yfiles.graph.UndoEngine}
* manually via {@link yfiles.graph.UndoEngine#addUnit}.
*
* -
@@ -57477,7 +57477,7 @@ declare namespace yfiles{
*
* -
* It is generally not necessary to subclass {@link yfiles.graph.UndoEngine} unless you want to customize the internal
- * handling of the units, which is both complicated and prone to errors. In most use cases it is sufficient
+ * handling of the units, which is both complicated and prone to errors. In most use cases it is sufficient
* to provide custom {@link yfiles.graph.IUndoUnit}s or {@link yfiles.graph.IMementoSupport}.
*
*
@@ -57530,12 +57530,12 @@ declare namespace yfiles{
beginCompoundEdit(undoName:string,redoName:string):yfiles.graph.ICompoundEdit;
/**
* Determines whether a call to {@link yfiles.graph.UndoEngine#redo} can be made.
- * @returns
+ * @returns
*/
canRedo():boolean;
/**
* Determines whether a call to {@link yfiles.graph.UndoEngine#undo} can be made.
- * @returns
+ * @returns
*/
canUndo():boolean;
/**
@@ -57944,38 +57944,38 @@ declare namespace yfiles{
*/
constructor(undoName:string,redoName?:string);
/**
- *
+ *
*/
dispose():void;
/**
- *
+ *
* @abstract
*/
redo():void;
/**
- *
+ *
* @param unit
- * @returns
+ * @returns
*/
tryMergeUnit(unit:yfiles.graph.IUndoUnit):boolean;
/**
- *
+ *
* @param unit
- * @returns
+ * @returns
*/
tryReplaceUnit(unit:yfiles.graph.IUndoUnit):boolean;
/**
- *
+ *
* @abstract
*/
undo():void;
/**
- *
+ *
* @type {string}
*/
undoName:string;
/**
- *
+ *
* @type {string}
*/
redoName:string;
@@ -57998,7 +57998,7 @@ declare namespace yfiles{
export interface FoldingEdgeConverterBase extends yfiles.lang.Object,yfiles.graph.IFoldingEdgeConverter{}
export class FoldingEdgeConverterBase {
/**
- *
+ *
* @param factory
* @param foldingView
* @param masterEdge
@@ -58006,7 +58006,7 @@ declare namespace yfiles{
* @param sourceIsCollapsed
* @param target
* @param targetIsCollapsed
- * @returns
+ * @returns
* @abstract
*/
addFoldingEdge(factory:yfiles.graph.IFoldingEdgeFactory,foldingView:yfiles.graph.IFoldingView,masterEdge:yfiles.graph.IEdge,source:yfiles.graph.INode,sourceIsCollapsed:boolean,target:yfiles.graph.INode,targetIsCollapsed:boolean):yfiles.graph.IEdge;
@@ -58776,7 +58776,7 @@ declare namespace yfiles{
* @param sourceIsCollapsed
* @param target
* @param targetIsCollapsed
- * @returns
+ * @returns
*/
addFoldingEdge(factory:yfiles.graph.IFoldingEdgeFactory,foldingView:yfiles.graph.IFoldingView,masterEdge:yfiles.graph.IEdge,source:yfiles.graph.INode,sourceIsCollapsed:boolean,target:yfiles.graph.INode,targetIsCollapsed:boolean):yfiles.graph.IEdge;
/**
@@ -58824,7 +58824,7 @@ declare namespace yfiles{
* @param sourceIsCollapsed
* @param targetSourceNode
* @param targetIsCollapsed
- * @returns
+ * @returns
* @protected
*/
addFirstSeparateEdge(factory:yfiles.graph.IFoldingEdgeFactory,foldingView:yfiles.graph.IFoldingView,masterEdge:yfiles.graph.IEdge,viewSourceNode:yfiles.graph.INode,sourceIsCollapsed:boolean,targetSourceNode:yfiles.graph.INode,targetIsCollapsed:boolean):yfiles.graph.IEdge;
@@ -59171,7 +59171,7 @@ declare namespace yfiles{
*/
clearBends():void;
/**
- *
+ *
* @param label
*/
remove(label:yfiles.graph.FoldingLabelState):void;
@@ -59373,7 +59373,7 @@ declare namespace yfiles{
*/
getFoldingPortState(masterPort:yfiles.graph.IPort):yfiles.graph.FoldingPortState;
/**
- *
+ *
* @param label
*/
remove(label:yfiles.graph.FoldingLabelState):void;
@@ -59645,7 +59645,7 @@ declare namespace yfiles{
*
* @param node The node relative to which the stripe layout is calculated. This should be the same node where {@link #table} for stripe is associated
* to.
- * @returns
+ * @returns
*/
getAbsoluteBounds?(node:yfiles.graph.INode):yfiles.geometry.Rect;
/**
@@ -60075,7 +60075,7 @@ declare namespace yfiles{
findStripes?(node:yfiles.graph.INode,location:yfiles.geometry.Point,stripeTypes:yfiles.graph.StripeTypes,filter:(obj:yfiles.graph.IStripe)=>boolean):yfiles.collections.IEnumerable;
/**
* Return the accumulated insets for the table.
- * @returns
+ * @returns
*/
getAccumulatedInsets?():yfiles.geometry.Insets;
/**
@@ -60635,21 +60635,21 @@ declare namespace yfiles{
*/
constructor(options?:{insets?:yfiles.geometry.Insets,useActualInsets?:boolean});
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
* Creates the parameter for the given position.
* @param position The position.
- * @returns
+ * @returns
*/
createParameter(position:yfiles.graph.StretchStripeLabelModelPosition):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
@@ -60666,16 +60666,16 @@ declare namespace yfiles{
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param label
* @param model
- * @returns
+ * @returns
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -60816,21 +60816,21 @@ declare namespace yfiles{
*/
constructor(options?:{ratio?:number,useActualInsets?:boolean});
/**
- *
- * @returns
+ *
+ * @returns
*/
createDefaultParameter():yfiles.graph.ILabelModelParameter;
/**
* Creates the parameter for the given position.
* @param position The position.
- * @returns
+ * @returns
*/
createParameter(position:yfiles.graph.StripeLabelModelPosition):yfiles.graph.ILabelModelParameter;
/**
- *
+ *
* @param label
* @param layoutParameter
- * @returns
+ * @returns
*/
getContext(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.graph.ILookup;
/**
@@ -60847,16 +60847,16 @@ declare namespace yfiles{
*/
getGeometry(label:yfiles.graph.ILabel,layoutParameter:yfiles.graph.ILabelModelParameter):yfiles.geometry.IOrientedRectangle;
/**
- *
+ *
* @param label
* @param model
- * @returns
+ * @returns
*/
getParameters(label:yfiles.graph.ILabel,model:yfiles.graph.ILabelModel):yfiles.collections.IEnumerable;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -60946,18 +60946,18 @@ declare namespace yfiles{
*/
constructor(options?:{insets?:yfiles.geometry.Insets,relativeLocation?:yfiles.geometry.Point,rowDefaults?:yfiles.graph.IStripeDefaults,columnDefaults?:yfiles.graph.IStripeDefaults});
/**
- *
+ *
* @param owner
* @param text
* @param [layoutParameter=null]
* @param [style=null]
* @param [preferredSize=null]
* @param [tag=null]
- * @returns
+ * @returns
*/
addLabel(owner:yfiles.graph.IStripe,text:string,layoutParameter?:yfiles.graph.ILabelModelParameter,style?:yfiles.styles.ILabelStyle,preferredSize?:yfiles.geometry.Size,tag?:any):yfiles.graph.ILabel;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.owner
* @param options.text
@@ -60965,12 +60965,12 @@ declare namespace yfiles{
* @param [options.style=null]
* @param [options.preferredSize=null]
* @param [options.tag=null]
- * @returns
+ * @returns
*/
addLabel(options:{owner:yfiles.graph.IStripe,text:string,layoutParameter?:yfiles.graph.ILabelModelParameter,style?:yfiles.styles.ILabelStyle,preferredSize?:yfiles.geometry.Size,tag?:Object}):yfiles.graph.ILabel;
/**
- *
- * @returns
+ *
+ * @returns
*/
clone():any;
/**
@@ -61007,7 +61007,7 @@ declare namespace yfiles{
*/
copyRow(row:yfiles.graph.IRow):yfiles.graph.IRow;
/**
- *
+ *
* @param owner
* @param [width=null]
* @param [minWidth=null]
@@ -61015,11 +61015,11 @@ declare namespace yfiles{
* @param [style=null]
* @param [tag=null]
* @param [index=null]
- * @returns
+ * @returns
*/
createChildColumn(owner:yfiles.graph.IColumn,width?:number,minWidth?:number,insets?:yfiles.geometry.Insets,style?:yfiles.styles.IStripeStyle,tag?:any,index?:number):yfiles.graph.IColumn;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.owner
* @param [options.width=null]
@@ -61028,11 +61028,11 @@ declare namespace yfiles{
* @param [options.style=null]
* @param [options.tag=null]
* @param [options.index=null]
- * @returns
+ * @returns
*/
createChildColumn(options:{owner:yfiles.graph.IColumn,width?:number,minWidth?:number,insets?:yfiles.geometry.Insets,style?:yfiles.styles.IStripeStyle,tag?:Object,index?:number}):yfiles.graph.IColumn;
/**
- *
+ *
* @param owner
* @param [height=null]
* @param [minHeight=null]
@@ -61040,11 +61040,11 @@ declare namespace yfiles{
* @param [style=null]
* @param [tag=null]
* @param [index=null]
- * @returns
+ * @returns
*/
createChildRow(owner:yfiles.graph.IRow,height?:number,minHeight?:number,insets?:yfiles.geometry.Insets,style?:yfiles.styles.IStripeStyle,tag?:any,index?:number):yfiles.graph.IRow;
/**
- *
+ *
* @param {Object} options The parameters to pass.
* @param options.owner
* @param [options.height=null]
@@ -61053,7 +61053,7 @@ declare namespace yfiles{
* @param [options.style=null]
* @param [options.tag=null]
* @param [options.index=null]
- * @returns
+ * @returns
*/
createChildRow(options:{owner:yfiles.graph.IRow,height?:number,minHeight?:number,insets?:yfiles.geometry.Insets,style?:yfiles.styles.IStripeStyle,tag?:Object,index?:number}):yfiles.graph.IRow;
/**
@@ -61097,9 +61097,9 @@ declare namespace yfiles{
*/
static installStaticUndoSupport(graph:yfiles.graph.IGraph):void;
/**
- *
+ *
* @param type
- * @returns
+ * @returns
*/
lookup(type:yfiles.lang.Class):any;
/**
@@ -61170,7 +61170,7 @@ declare namespace yfiles{
*/
remove(label:yfiles.graph.ILabel):void;
/**
- *
+ *
* @param stripe
*/
remove(stripe:yfiles.graph.IStripe):void;
@@ -61198,33 +61198,33 @@ declare namespace yfiles{
*/
setLabelText(label:yfiles.graph.ILabel,text:string):void;
/**
- *
+ *
* @param stripe
* @param minimumSize
*/
setMinimumSize(stripe:yfiles.graph.IStripe,minimumSize:number):void;
/**
- *
+ *
* @param owner
* @param column
* @param [index=null]
*/
setParent(owner:yfiles.graph.IColumn,column:yfiles.graph.IColumn,index?:number):void;
/**
- *
+ *
* @param owner
* @param row
* @param [index=null]
*/
setParent(owner:yfiles.graph.IRow,row:yfiles.graph.IRow,index?:number):void;
/**
- *
+ *
* @param stripe
* @param size
*/
setSize(stripe:yfiles.graph.IStripe,size:number):void;
/**
- *
+ *
* @param stripe
* @param insets
*/
@@ -61240,7 +61240,7 @@ declare namespace yfiles{
*/
setStyle(label:yfiles.graph.ILabel,style:yfiles.styles.ILabelStyle):void;
/**
- *
+ *
* @param stripe
* @param style
*/
@@ -61298,13 +61298,13 @@ declare namespace yfiles{
*/
columns:yfiles.collections.IEnumerable;
/**
- *
+ *
* @default '0'
* @type {yfiles.geometry.Insets}
*/
insets:yfiles.geometry.Insets;
/**
- *
+ *
* @default '0,0'
* @type {yfiles.geometry.Point}
*/
@@ -61319,62 +61319,62 @@ declare namespace yfiles{
*/
layout:yfiles.geometry.IRectangle;
/**
- *
+ *
* @param listener
*/
addStripeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeStripeCreatedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addStripeRemovedListener(listener:(sender:any,evt:yfiles.graph.StripeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeStripeRemovedListener(listener:(sender:any,evt:yfiles.graph.StripeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addStripeChangedListener(listener:(sender:any,evt:yfiles.graph.StripeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeStripeChangedListener(listener:(sender:any,evt:yfiles.graph.StripeEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
addLabelAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs)=>void):void;
/**
- *
+ *
* @param listener
*/
removeLabelAddedListener(listener:(sender:any,evt:yfiles.collections.ItemEventArgs