代码搜索:Protected
找到约 10,000 项符合「Protected」的源代码
代码结果 10,000
www.eeworm.com/read/288488/8628924
java waitobj.java
package lockmgr;
public class WaitObj extends DataObj
{
protected Thread thread = null;
// The data members inherited are
// XObj:: protected int xid;
// TrxnObj:: protected Str
www.eeworm.com/read/429452/8807877
java exercise 3.product.java
/**
* This class models a generic product in the store.
*
* @author Neil
* @version 1.0.0
*/
public class Product {
protected String code;
protected String description;
protected d
www.eeworm.com/read/419945/10827376
java linkedstack.java
/**
*
*
*
*/
package dreamer.util;
class StackNode
{
protected T data;
protected StackNode previous;
protected StackNode next;
}
public class LinkedStackimpl
www.eeworm.com/read/419945/10827386
java linkedlist.java
/**
*
*
*
*/
package dreamer.util;
class ListNode
{
protected T data;
protected ListNode previous;
protected ListNode next;
}
public class LinkedList implemen
www.eeworm.com/read/419945/10827466
java linkedqueue.java
/**
*
*
*
*/
package dreamer.util;
class QueueNode
{
protected T data;
protected QueueNode previous;
protected QueueNode next;
}
public class LinkedQueue impl
www.eeworm.com/read/483779/6594956
java exercise 3.product.java
/**
* This class models a generic product in the store.
*
* @author Neil
* @version 1.0.0
*/
public class Product {
protected String code;
protected String description;
protected d
www.eeworm.com/read/122829/14666352
secure_channel
Secure Channel
-------------
secure channel is a program to interactive with the user and the protected
object. The protected object is protected with DENY,READ,APPEND, then use
LIDS can make a REA
www.eeworm.com/read/487347/1237274
cs dayofrangetimingbase.cs
using System;
namespace Lephone.Util.TimingTask.Timings
{
public abstract class DayOfRangeTimingBase : ITiming
{
protected TimeSpan TimeOfDay;
protected int DayOfRange;
protected Now
www.eeworm.com/read/451092/1666667
java field.java
package com.utstar.fcs.domain.workinstruction;
public class Field implements Cloneable{
protected Long id;
protected FieldDefinition fieldDefinition;
protected StationVersion stationVersion
www.eeworm.com/read/232891/4695826
java basicmessagesender.java
import javax.naming.*;
import javax.jms.*;
public class BasicMessageSender
{
protected QueueConnection _connection =null;
protected QueueSession _session = null;
protected QueueSen