Back to project page VisEQ.
The source code is released under:
Copyright (c) 2012, Spotify AB All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:...
If you think the Android project VisEQ listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.lsu.vizeq; /*ww w . j a v a2s . c o m*/ import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; public class PVCircle { private List<Track> trackList; private String name; private int weight; private double radius; private double x, y; private int color; private double scale; public PVCircle() { trackList = new ArrayList<Track>(); } public List<Track> getTrackList() { return trackList; } public void setTrackList(List<Track> trackList) { this.trackList = trackList; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getWeight() { return weight; } public void setWeight(int weight) { this.weight = weight; } public double getRadius() { return radius; } public void setRadius(double radius) { this.radius = radius; } public int getColor() { return color; } public void setColor(int color) { this.color = color; } public void setPosition(double x, double y) { this.x = x; this.y = y; } public double getX() { return x; } public double getY() { return y; } public void setScale(double scale) { this.scale = scale; } public double getScale() { return scale; } }