代码搜索:Wrox
找到约 2,023 项符合「Wrox」的源代码
代码结果 2,023
www.eeworm.com/read/185314/5238163
java customerserviceagent.java
package com.wrox.algorithms.queues;
/**
* Services {@link Call}s by pulling them off a {@link Queue}.
*
*/
public class CustomerServiceAgent implements Runnable {
/** Indicates it's time for t
www.eeworm.com/read/185314/5238170
java blockingqueue.java
package com.wrox.algorithms.queues;
/**
* A {@link Thread}-safe {@link Queue} that blocks (waits) until values are available to {@link #dequeue()}.
*
* TODO: Tests.
*/
public class BlockingQueue
www.eeworm.com/read/185314/5238171
java callgenerator.java
package com.wrox.algorithms.queues;
/**
* Exercises a {@link CallCenter} by randomly generating {@link Call}s.
*
*/
public class CallGenerator {
/** The call centre. */
private final CallC
www.eeworm.com/read/185314/5238178
java synchronizedqueue.java
package com.wrox.algorithms.queues;
/**
* A simple thread-safe {@link Queue}.
*
* TODO: Test.
*/
public class SynchronizedQueue implements Queue {
/** The lock object to use for synchronisati
www.eeworm.com/read/185314/5238190
java node.java
package com.wrox.algorithms.bstrees;
/**
* A node in a {@link BinarySearchTree}. Holds a value, a reference to a smaller child, larger child and parent nodes.
*
*/
public class Node implements Clo
www.eeworm.com/read/184988/5242883
java salesapplication.java
package com.wrox.pubsub;
import javax.naming.*;
import javax.jms.*;
public class SalesApplication
{
public SalesApplication ()
{
}
public static void main (String[] args)
www.eeworm.com/read/184988/5242931
java cloneinvoices.java
package com.wrox.clone;
import java.io.*;
public class CloneInvoices {
public static void main(String[] args) {
try {
InvoiceItems oInvoiceItems = new InvoiceItems();
// Ad
www.eeworm.com/read/184988/5242952
java httpgmttimestamp.java
// HTTPGMTTimestamp.java
package com.wrox.httpserver;
import java.text.*;
import java.util.*;
/**
* Encapsulates a GMT timestamp.
*/
class HTTPGMTTimestamp {
// Instance variable
www.eeworm.com/read/184988/5242977
java httpgmttimestamp.java
// HTTPGMTTimestamp.java
package com.wrox.httpserver;
import java.text.*;
import java.util.*;
/**
* Encapsulates a GMT timestamp.
*/
class HTTPGMTTimestamp {
// Instance variable
www.eeworm.com/read/164737/5488535
java employee.java
package com.wrox;
public class Employee {
protected String username;
protected String password;
protected String name;
protected String department;
protected String rolename;
protected S