代码搜索:methods
找到约 10,000 项符合「methods」的源代码
代码结果 10,000
www.eeworm.com/read/402041/2333438
java nullvaluedb.java
package org.trinet.jdbc ;
/** Data members Contain the default null values for the declared data types.
* Methods compare input values to null defaults to test for null equivalence.
*/
public clas
www.eeworm.com/read/402041/2333603
java channelable.java
package org.trinet.jasi;
import org.trinet.util.gazetteer.LatLonZ;
/** Defines methods for classes that have a Channel. */
public interface Channelable {
// Can't call these g/setChannel() b
www.eeworm.com/read/402041/2333706
java genericdatasource.java
package org.trinet.jasi;
import java.sql.Connection;
/**
* Define the default data source for all JASI classes. This data source will
* be used in calls and in other methods when no data so
www.eeworm.com/read/398719/2371155
java visitordao.java
package org.wiely.dao;
import java.util.List;
import org.wiely.vo.Visitor;
/**
* the interface named visitorDAO,two methods to provide opration the value
* object for visitor
*/
public
www.eeworm.com/read/397335/2403474
java testproperty.java
//: net/mindview/atunit/TestProperty.java
// The @Unit @TestProperty tag.
package net.mindview.atunit;
import java.lang.annotation.*;
// Both fields and methods may be tagged as properties:
@Ta
www.eeworm.com/read/393688/2472240
f90 fileutils.f90
#include
#include
module fileutils
!public methods
public :: get_filename
public :: set_filename
public :: opnfil
public :: getfil
public :: putfil
pu
www.eeworm.com/read/390438/2528493
js extras-array.js
/*
add some useful methods to the javascript array class. All operating on the built-in Array class, so no
need for any namespacing object.
Dave Crane 2005
*/
/*
append to end of array, opti
www.eeworm.com/read/384423/2602031
txt ratecontrol.txt
A qualitative overview of x264's ratecontrol methods
By Loren Merritt
x264's ratecontrol is based on libavcodec's, and is mostly empirical. But I can retroactively propose the following theoretical
www.eeworm.com/read/379468/2673509
java test.java
//Empty methods
class Test
{
static void foo()
{}
final public void bar()
{}
public static void main(String args[])
{
Test t = new Test();
t.foo();
t.bar();
}
}