src.samples.java.ex.CFS_Sample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fb-contrib Show documentation
Show all versions of fb-contrib Show documentation
An auxiliary findbugs.sourceforge.net plugin for java bug detectors that fall outside the narrow scope of detectors to be packaged with the product itself.
package ex;
import java.util.Date;
public class CFS_Sample {
@SuppressWarnings("deprecation")
public Date getNextDate(Date d) {
d.setHours(0);
return d;
}
@SuppressWarnings("deprecation")
public Date getNextDateFP(Date d) {
d = (Date) d.clone();
d.setHours(0);
return d;
}
public View fpCreateScrollView(View container, View content) {
if (!content.shouldAdd()) {
return container;
}
View scroller = View.createScroller(container.getChild(), content);
container.addView(scroller);
return scroller;
}
static class View {
public static View createScroller(Object child, View content) {
return null;
}
public void addView(View scroller) {
}
public boolean shouldAdd() {
return false;
}
public Object getChild() {
return null;
}
}
}