胖帅,开顺倾心
星期一, 02月 18th, 2008Essie 说 (12:24):
你啊,就是应该吃胖点,胖了肯定更帅
Zhou Renjian 说 (12:24):
我也这样想的,哈哈
Essie 说 (12:26):
你胖了,家里人看着开心,帅了,美女们看了更顺心
Zhou Renjian 说 (12:27):
美女们看了倾心,才是真的好
附:过年前老妈子关于“瘦”的唠叨引发的学术大问题
Essie 说 (12:24):
你啊,就是应该吃胖点,胖了肯定更帅
Zhou Renjian 说 (12:24):
我也这样想的,哈哈
Essie 说 (12:26):
你胖了,家里人看着开心,帅了,美女们看了更顺心
Zhou Renjian 说 (12:27):
美女们看了倾心,才是真的好
附:过年前老妈子关于“瘦”的唠叨引发的学术大问题
/* * * * * Copyright (c) 2007 java2script.org and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Zhou Renjian - initial API and implementation * * */ package net.sf.j2s.ajax; /** * @author zhou renjian * * 2006-10-10 */ public abstract class SimpleRPCRunnable extends SimpleSerializable { public String getHttpURL() { return “simplerpc”; // url is relative to the servlet! } public String getHttpMethod() { return “POST”; } /* * Actually there is synchronous call of this #ajaxIn method */ public void ajaxIn() {}; /** * Called by local Java thread of XMLHttpRequest or by remote servlet. * In this method, those public fields which has no senses for #ajaxOut * should be set empty so the transfer is much smaller and faster. */ public abstract void ajaxRun(); /* * Called by local Java thread of XMLHttpRequest after #ajaxRun */ public void ajaxOut() {}; /* * Called by local Java thread of XMLHttpRequest when #ajaxRun contains errors */ public void ajaxFail() {}; } /* * */