Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* The MIT License (MIT)
*
* Copyright (c) 2014-2015 [email protected]
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.github.abel533.echarts.series.force;
import com.github.abel533.echarts.style.ItemStyle;
import com.github.abel533.echarts.style.LineStyle;
import lombok.Getter;
import lombok.Setter;
import java.io.Serializable;
/**
* 力导向图的边数据
*
* @author liuzh
*/
@Getter
@Setter
public class Link implements Serializable {
private static final long serialVersionUID = 7882141565696266870L;
/**
* 源节点的index或者源节点的name
*/
private Object source;
/**
* 目标节点的index或者目标节点的name
*/
private Object target;
/**
* 边的权重,权重越大邻接节点越靠拢
*/
private Integer weight;
/**
* 详见 itemStyle, 只能设置 lineWidth, strokeColor, lineType 等描边的属性
*/
private ItemStyle itemStyle;
/**
* lineStyle样式
*/
private LineStyle lineStyle;
/**
* 构造函数
*/
public Link() {
}
/**
* 构造函数,参数:source,target,weight
*
* @param source
* @param target
* @param weight
*/
public Link(Object source, Object target, Integer weight) {
this.source = source;
this.target = target;
this.weight = weight;
}
/**
* 获取source值
*/
public Object source() {
return this.source;
}
/**
* 设置source值
*
* @param source
*/
public Link source(Object source) {
this.source = source;
return this;
}
/**
* 获取target值
*/
public Object target() {
return this.target;
}
/**
* 设置target值
*
* @param target
*/
public Link target(Object target) {
this.target = target;
return this;
}
/**
* 获取weight值
*/
public Integer weight() {
return this.weight;
}
/**
* 设置weight值
*
* @param weight
*/
public Link weight(Integer weight) {
this.weight = weight;
return this;
}
/**
* 详见 itemStyle, 只能设置 lineWidth, strokeColor, lineType 等描边的属性
*/
public ItemStyle itemStyle() {
if (this.itemStyle == null) {
this.itemStyle = new ItemStyle();
}
return this.itemStyle;
}
/**
* 设置lineStyle,返回object
*
* @param lineStyle
* @return
*/
public Link lineStyle(LineStyle lineStyle) {
this.lineStyle = lineStyle;
return this;
}
/**
* 返回lineStyle
*
* @return
*/
public LineStyle lineStyle() {
if (lineStyle == null) {
this.lineStyle = new LineStyle();
}
return this.lineStyle;
}
}