package DataStructure; public class Weight { int x; int y; SingleBTS bts; double weight; double area; public Weight(int x, int y, double weight) { this.x = x; this.y = y; this.weight = weight; } public Weight() { } }