You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
2.6 KiB
123 lines
2.6 KiB
package net.yacy.peers.graphics;
|
|
|
|
public class BannerData {
|
|
|
|
private final int width;
|
|
private final int height;
|
|
private final String bgcolor;
|
|
private final String textcolor;
|
|
private final String bordercolor;
|
|
private final String name;
|
|
private final long links;
|
|
private final long words;
|
|
private final String type;
|
|
private final int ppm;
|
|
private final String network;
|
|
private final int peers;
|
|
private final long nlinks;
|
|
private final long nwords;
|
|
private final double nqph;
|
|
private final long nppm;
|
|
|
|
public BannerData(
|
|
final int width,
|
|
final int height,
|
|
final String bgcolor,
|
|
final String textcolor,
|
|
final String bordercolor,
|
|
final String name,
|
|
final long links,
|
|
final long words,
|
|
final String type,
|
|
final int ppm,
|
|
final String network,
|
|
final int peers,
|
|
final long nlinks,
|
|
final long nwords,
|
|
final double nqph,
|
|
final long nppm
|
|
) {
|
|
this.width = width;
|
|
this.height = height;
|
|
this.bgcolor = bgcolor;
|
|
this.textcolor = textcolor;
|
|
this.bordercolor = bordercolor;
|
|
this.name = name;
|
|
this.links = links;
|
|
this.words = words;
|
|
this.type = type;
|
|
this.ppm = ppm;
|
|
this.network = network;
|
|
this.peers = peers;
|
|
this.nlinks = nlinks;
|
|
this.nwords = nwords;
|
|
this.nqph = nqph;
|
|
this.nppm = nppm;
|
|
}
|
|
|
|
public final int getWidth() {
|
|
return width;
|
|
}
|
|
|
|
public final int getHeight() {
|
|
return height;
|
|
}
|
|
|
|
public final String getBgcolor() {
|
|
return bgcolor;
|
|
}
|
|
|
|
public final String getTextcolor() {
|
|
return textcolor;
|
|
}
|
|
|
|
public final String getBordercolor() {
|
|
return bordercolor;
|
|
}
|
|
|
|
public final String getName() {
|
|
return name;
|
|
}
|
|
|
|
public final long getLinks() {
|
|
return links;
|
|
}
|
|
|
|
public final long getWords() {
|
|
return words;
|
|
}
|
|
|
|
public final String getType() {
|
|
return type;
|
|
}
|
|
|
|
public final int getPpm() {
|
|
return ppm;
|
|
}
|
|
|
|
public final String getNetwork() {
|
|
return network;
|
|
}
|
|
|
|
public final int getPeers() {
|
|
return peers;
|
|
}
|
|
|
|
public final long getNlinks() {
|
|
return nlinks;
|
|
}
|
|
|
|
public final long getNwords() {
|
|
return nwords;
|
|
}
|
|
|
|
public final double getNqph() {
|
|
return nqph;
|
|
}
|
|
|
|
public final long getNppm() {
|
|
return nppm;
|
|
}
|
|
|
|
}
|