All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taobao.api.internal.cluster.Weightable Maven / Gradle / Ivy

There is a newer version: 1.8.10
Show newest version
package com.taobao.api.internal.cluster;

public abstract class Weightable {

	private double weight;

	public double getWeight() {
		return this.weight;
	}

	public void setWeight(double weight) {
		this.weight = weight;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy