代码搜索:singleton
找到约 4,696 项符合「singleton」的源代码
代码结果 4,696
www.eeworm.com/read/330522/3422443
js tooltip.js
// Singleton class TooltipWindow
// This class works with special className. The tooltip content could be in your HTML page as an hidden element or
// can be retreive by an AJAX call.
//
// To work, Y
www.eeworm.com/read/321527/3532488
js tooltip.js
// Singleton class TooltipWindow
// This class works with special className. The tooltip content could be in your HTML page as an hidden element or
// can be retreive by an AJAX call.
//
// To work, Y
www.eeworm.com/read/321527/3532497
svn-base tooltip.js.svn-base
// Singleton class TooltipWindow
// This class works with special className. The tooltip content could be in your HTML page as an hidden element or
// can be retreive by an AJAX call.
//
// To work, Y
www.eeworm.com/read/321527/3532683
js tooltip.js
// Singleton class TooltipWindow
// This class works with special className. The tooltip content could be in your HTML page as an hidden element or
// can be retreive by an AJAX call.
//
// To work, Y
www.eeworm.com/read/321527/3532692
svn-base tooltip.js.svn-base
// Singleton class TooltipWindow
// This class works with special className. The tooltip content could be in your HTML page as an hidden element or
// can be retreive by an AJAX call.
//
// To work, Y
www.eeworm.com/read/318815/3562707
java mailserver.java
package com.javapatterns.singleton.mxrecord;
public class MailServer
{
private int priority;
private String server;
public void setPriority(int priority)
{
this.priority = priority;
www.eeworm.com/read/318815/3562712
java lazysingleton1.java
package com.javapatterns.singleton.answers;
/**
* Only once instance of the class may be created during the
* execution of any given program. Instances of this class should
* be aquired thr
www.eeworm.com/read/318815/3562715
java eagersingleton.java
package com.javapatterns.singleton.demos;
/**
* Only once instance of the class may be created during the execution of any given program. Instances of this class should
* be aquired through the
www.eeworm.com/read/318815/3562716
java objectkeeper.java
package com.javapatterns.singleton.demos;
import java.util.Vector;
/**
* This class keeps your objects from garbage collected
*/
public class ObjectKeeper extends Thread {
www.eeworm.com/read/318815/3562718
java regsingletontest.java
package com.javapatterns.singleton.demos;
public class RegSingletonTest
{
public static void main(String[] args)
{
//(1) Test eager
//System.out.println( EagerSinglet