- 1
- 2
- 3
- 4
- 5
- 6
@Column(name = "IS_DEFAULT", unique = false, nullable = true, insertable = true, updatable = true, length = 1)
private String isDefault;
......
if (b.getIsDefault().equals("N"))...
Нашли или выдавили из себя код, который нельзя назвать нормальным, на который без улыбки не взглянешь? Не торопитесь его удалять или рефакторить, — запостите его на говнокод.ру, посмеёмся вместе!
+76
@Column(name = "IS_DEFAULT", unique = false, nullable = true, insertable = true, updatable = true, length = 1)
private String isDefault;
......
if (b.getIsDefault().equals("N"))...
Created by: Sudharsan Veluru
+79
ArrayList<String> Stack = new ArrayList<String>(14);
ArrayList<String> ShuffledStack = new ArrayList<String>(14);
Stack.add(0,"a");
Stack.add(1,"b");
Stack.add(2,"c");
Stack.add(3,"d");
Stack.add(4,"e");
Stack.add(5,"f");
Stack.add(6,"e");
Stack.add(7,"g");
Stack.add(8,"h");
Stack.add(9,"j");
Stack.add(10,"k");
Stack.add(11,"l");
Stack.add(12,"o");
Stack.add(13,"m");
int size = Stack.size();
while(ShuffledStack.size() != size)
{
int r = (int)(Math.random()*(size));
if(!ShuffledStack.contains( Stack.get( r )))
ShuffledStack.add( Stack.get( r ));
}
> Еще более гнетет то что великого старину Доналда Кнута я так и не прочел. Дело в том что там большинство алгоритмов на математических формулах и основаны(бля, меня колбасит от такого)))...
Источник: http://pyha.ru/forum/topic/3831.0
+78
public Boolean isOdd(int par) {
Boolean ret=true;
if(par%2==0)
ret=false;
else
ret=true;
return ret;
}
+92
protected IOException copyRange(InputStream istream, ServletOutputStream ostream) {
// Copy the input stream to the output stream
IOException exception = null;
byte buffer[] = new byte[input];
int len = buffer.length;
while (true) {
try {
len = istream.read(buffer);
if (len == -1) {
break;
}
ostream.write(buffer, 0, len);
} catch (IOException e) {
exception = e;
len = -1;
break;
}
}
return exception;
}
Си-стайл в исходниках Tomcat. Зачем кидать исключения, если их можно возвращать вместо кода ошибки?
+146
PreparedStatement pst = conn.prepareStatement(
"SELECT * FROM employeeskill, employee " +
"WHERE employee.id_EmployeeDetail = employeeskill.id_EmployeeDetail " +
"AND employeeskill.name = ?");
pst.setString(1, employeeSkillName);
ResultSet res = pst.executeQuery();
while (res.next()){
Employee empl = new Employee(res.getLong(6), res.getString(7),
res.getString(8), res.getString(9), res.getString(10),
res.getString(11), res.getString(12), res.getLong(13));
list.add(empl);
+147
List<Project> l =this.listAllProjects();
...
pStmt = conn.prepareStatement("INSERT INTO Project VALUES (?,?,?,?)");
pStmt.setString(1,""+(l.get(l.size()-1).getID()+1));
...
Запись в базу
+147
/*
org.springframework.aop.framework
Class AbstractSingletonProxyFactoryBean
Convenient proxy factory bean superclass for proxy factory beans that create only singletons.
*/
public abstract class AbstractSingletonProxyFactoryBean
extends ProxyConfig
implements FactoryBean, BeanClassLoaderAware, InitializingBean
http://static.springsource.org/spring/docs/2.0.x/api/org/springframework/aop/framework/AbstractSingletonProxyFactoryBean.html
Convenient proxy factory bean superclass for proxy factory beans that create only singletons. And we need to go deeper...
+147
try {
final SecurityClientInternalLocal scil =
(SecurityClientInternalLocal) EJBLocator.getEJBLocal(
SecurityClientInternalLocal.class);
final String result = scil.getPath2ChipherTables(login);
return result;
} catch (Exception ex) {
throw ex;
}
Промышленная обработка исключений такая промышленная...
+147
private static Random rnd = new Random();
public static int getRand(int start, int end) {
boolean check = false;
int number = 0;
if (start >= end) {
final int temp = end;
end = start;
start = temp;
}
while (!check) {
number = Math.abs(rnd.nextInt() % end);
if ((number >= start) && (number < end)) {
check = true;
}
}
return number;
}
эпический метод, найден в исходниках игрушки
+147
public class RecordCount {
public static int reccounter = 0;
}