代码搜索:Collection
找到约 10,000 项符合「Collection」的源代码
代码结果 10,000
www.eeworm.com/read/122082/6066273
readme
This is a quick page to preview the icons I am creating for some of my Java(TM) programs. You are free to
use them in your programs, but I am retaining Copyright, and they can not be used in any
www.eeworm.com/read/119649/6082826
format getcollection.format
Public Function Get{0}Collection() As {2}Collection
Return Get{0}Collection(FetchPath.{0})
End Function
Public Function Get{0}Collection(ByVal ParamArray relations() As DataManagerBase
www.eeworm.com/read/119649/6082842
format collections.format
Private _{2}s As {0}Collection = Nothing
Friend Sub refresh{2}s()
If _{2}s Is Nothing Then _{2}s = New {0}Collection()
Dim tmp as IList = _{2}s
tmp.Clear()
Dim cr()
www.eeworm.com/read/119649/6082872
format data.format
t = ds.Tables("{1}")
{0}s = new {0}Collection()
For Each r In t.Rows
{0}s.Add( new {0}( data, r))
Next
www.eeworm.com/read/119649/6082926
format classcollection.format
public MustInherit class {0}CollectionOrmTemplate : Inherits CollectionTemplate
Public Sub New()
MyBase.New(GetType({0}))
www.eeworm.com/read/119649/6082928
format stringfilterby.format
' {2}
Public Function FilterBy{1}(ByVal searchValue As String) As {0}Collection
Return FilterBy{1}({3}.Parse(searchValue), CompareType.Exact)
End Function
www.eeworm.com/read/119649/6082931
format collectionfilterby.format
Public Function FilterBy{1}(ByVal searchValue As {2}) As {0}Collection
Return FilterBy{1}(searchValue, CompareType.Exact)
End Function
Public Function Filt
www.eeworm.com/read/119649/6083079
format data.format
t = ds.Tables["{1}"];
{0}s = new {0}Collection();
foreach(DataRow r in t.Rows)
{
{0}s.Add( new {0}( data, r));
}
www.eeworm.com/read/119649/6083134
format classcollection.format
///
/// Holds a collection of {0}s that can be searched and enumerated.
///
[OrmLib.TypedCollection(typeof({0}))]
public abstract class {0}CollectionOrmTemplate : Or
www.eeworm.com/read/118804/6093709
java mailrepository.java
/***********************************************************************
* Copyright (c) 1999-2004 The Apache Software Foundation. *
* All rights reserved.