PageRenderTime 178ms queryTime 52ms sortTime 11ms getByIdsTime 28ms findMatchingLines 10ms

100+ results results for 'List<Object> repo:stefanrusek/xronos' (178 ms)

Not the results you expected?
DelayedFilterCheckboxTree.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 332 lines
                    
50	Object viewerInput;
                    
51	ArrayList<Object> checkState = new ArrayList<Object>();
                    
52	Set<Object> expanded = new HashSet<Object>();
                    
71					else {
                    
72						ArrayList<Object> toRemove = new ArrayList<Object>(1);
                    
73						// See bug 258117.  Ideally we would get check state changes 
                    
278		if (checkState == null)
                    
279			checkState = new ArrayList<Object>(checked.length);
                    
280		for (int i = 0; i < checked.length; i++)
                    
                
org.apache.commons.collections.iterators.IteratorChain.cs https://github.com/gadfly/nofs.git | C# | 317 lines
                    
51        /** The chain of iterators */
                    
52        protected readonly java.util.List<Object> iteratorChain = new java.util.ArrayList<Object>();
                    
53        /** The index of the current iterator */
                    
183         */
                    
184        public java.util.List<Object> getIterators()
                    
185        {
                    
                
DefaultDaemonConnectionTest.groovy https://github.com/andrewhj-mn/gradle.git | Groovy | 393 lines
                    
351        final Object endInput = new Object()
                    
352        final LinkedList<Object> receiveQueue = new LinkedList<Object>()
                    
353
                    
                
EqlSearchResponseTests.java https://github.com/imotov/elasticsearch.git | Java | 277 lines
                    
124                String fieldName = randomAlphaOfLengthBetween(3, 10);
                    
125                Tuple<List<Object>, List<Object>> tuple = RandomObjects.randomStoredFieldValues(random(), xType);
                    
126                DocumentField input = new DocumentField(fieldName, tuple.v1());
                    
129            case 1:
                    
130                List<Object> listValues = randomList(1, 5, () -> randomList(1, 5, ESTestCase::randomInt));
                    
131                DocumentField listField = new DocumentField(randomAlphaOfLength(5), listValues);
                    
133            case 2:
                    
134                List<Object> objectValues = randomList(
                    
135                    1,
                    
196            for (int i = 0; i < size; i++) {
                    
197                List<Object> joins = null;
                    
198                if (randomBoolean()) {
                    
                
BinaryShardedJedis.java https://github.com/gnprice/jedis.git | Java | 403 lines
                    
397
                    
398    public List<Object> pipelined(ShardedJedisPipeline shardedJedisPipeline) {
                    
399        shardedJedisPipeline.setShardedJedis(this);
                    
                
QueryBatchItemBase.cs https://github.com/gliljas/nhibernate-core.git | C# | 391 lines
                    
26		private DbDataReader _reader;
                    
27		private List<object>[] _hydratedObjects;
                    
28
                    
181			var dialect = Session.Factory.Dialect;
                    
182			var hydratedObjects = new List<object>[_queryInfos.Count];
                    
183			var isDebugLog = Log.IsDebugEnabled();
                    
200					var entitySpan = loader.EntityPersisters.Length;
                    
201					hydratedObjects[i] = entitySpan == 0 ? null : new List<object>(entitySpan);
                    
202					var keys = new EntityKey[entitySpan];
                    
223					var optionalObjectKey = Loader.Loader.GetOptionalObjectKey(queryParameters, Session);
                    
224					var tmpResults = new List<object>();
                    
225					var queryCacheBuilder = queryInfo.IsCacheable ? new QueryCacheResultBuilder(loader) : null;
                    
356
                    
357		private void InitializeEntitiesAndCollections(DbDataReader reader, List<object>[] hydratedObjects)
                    
358		{
                    
                
PipelineResourceInner.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 353 lines
                    
246     */
                    
247    public List<Object> annotations() {
                    
248        return this.innerProperties() == null ? null : this.innerProperties().annotations();
                    
256     */
                    
257    public PipelineResourceInner withAnnotations(List<Object> annotations) {
                    
258        if (this.innerProperties() == null) {
                    
                
GenericClassProxyTestCase.cs https://github.com/dtchepak/Castle.Core.git | C# | 328 lines
                    
142		{
                    
143			GenClassWithGenMethodsConstrained<List<object>> proxy =
                    
144				generator.CreateClassProxy<GenClassWithGenMethodsConstrained<List<object>>>(logger);
                    
175			GenClassWithGenReturn<List<object>, List<object>> proxy =
                    
176				generator.CreateClassProxy<GenClassWithGenReturn<List<object>, List<object>>>(logger);
                    
177
                    
191			GenClassNameClash<List<object>, List<object>> proxy =
                    
192				generator.CreateClassProxy<GenClassNameClash<List<object>, List<object>>>(logger);
                    
193
                    
221			KeepDataInterceptor interceptor = new KeepDataInterceptor();
                    
222			GenClassWithGenMethods<List<object>> proxy = generator.CreateClassProxy<GenClassWithGenMethods<List<object>>>(interceptor);
                    
223
                    
251			GenClassWithGenReturn<List<object>, List<object>> proxy =
                    
252				generator.CreateClassProxy<GenClassWithGenReturn<List<object>, List<object>>>(interceptor);
                    
253
                    
                
CosmosAsyncStoredProcedure.java git://github.com/WindowsAzure/azure-sdk-for-java.git | Java | 246 lines
                    
120     */
                    
121    public Mono<CosmosStoredProcedureResponse> execute(List<Object> procedureParams,
                    
122                                                            CosmosStoredProcedureRequestOptions options) {
                    
212
                    
213    private Mono<CosmosStoredProcedureResponse> executeInternal(List<Object> procedureParams,
                    
214                                                             CosmosStoredProcedureRequestOptions options,
                    
                
ButtonsParser.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 249 lines
                    
71    private String title;
                    
72    private List<Object> options;
                    
73    private List<Object> additionalOptions;
                    
144    public void createButtons() {
                    
145        options = new ArrayList<Object>();
                    
146        additionalOptions = new ArrayList<Object>();
                    
160            
                    
161            List<Object> addTo = "left".equals(align) ? additionalOptions : options;
                    
162
                    
192
                    
193    List<Object> getOptions() {
                    
194        return options;
                    
196
                    
197    List<Object> getAditionalOptions() {
                    
198        return additionalOptions;
                    
                
BufferedItemList.cs https://EventScavenger.svn.codeplex.com/svn | C# | 464 lines
                    
285
                    
286				List<object> newSortedList = new List<object>( _sortedListItems.Length + additions.Length );
                    
287				
                    
303				{
                    
304					newSortedList = new List<object>( _sortedListItems );
                    
305				}
                    
455		private Column[] _jobGroupColumns = null;
                    
456		private List<object> _jobSortedList = null;
                    
457		
                    
                
SeleccionHorizontalViewController.java https://gitlab.com/edddea/api_contratacion_arq | Java | 295 lines
                    
35	private LayoutInflater inflater;
                    
36	private ArrayList<Object> componentes;
                    
37	private ArrayList<ImageButton> arregloBotones;
                    
42	public SeleccionHorizontalViewController(Context context,LinearLayout.LayoutParams layoutParams, 
                    
43											ArrayList<Object> listaComponentes, BaseDelegate delegate,
                    
44											boolean addOtherElement) {
                    
                
NetworkAvailability.java http://mobicents.googlecode.com/svn/trunk/ | Java | 349 lines
                    
99    @XmlAnyElement(lax = true)
                    
100    protected List<Object> any;
                    
101    @XmlAnyAttribute
                    
155     */
                    
156    public List<Object> getAny() {
                    
157        if (any == null) {
                    
157        if (any == null) {
                    
158            any = new ArrayList<Object>();
                    
159        }
                    
217        @XmlAnyElement(lax = true)
                    
218        protected List<Object> any;
                    
219        @XmlAttribute(required = true)
                    
296         */
                    
297        public List<Object> getAny() {
                    
298            if (any == null) {
                    
                
LAStateTest.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 148 lines
                    
89    public void testLAState() {
                    
90        List<Object> expected = new ArrayList<Object>();
                    
91        LAState laState = LAState.empty();
                    
98
                    
99        List<Object> expectedInner = expected;
                    
100        LAState laStateInner = laState;
                    
101
                    
102        expected = new ArrayList<Object>();
                    
103        laState = laState.empty();
                    
112
                    
113    private static LAState add(List<Object> expectedLAState, LAState laState, int lookahead, Object state) {
                    
114        expectedLAState.add(Integer.valueOf(lookahead));
                    
120
                    
121    private static LAState addAll(List<Object> expectedLAState, LAState laState, int index,
                    
122    List<Object> expectedLAStateToAdd, LAState laStateToAdd) {
                    
                
CompilerBlob.cs git://github.com/sorear/niecza.git | C# | 275 lines
                    
117                    VarDeque it = o.mo.mro_raw_iterator.Get(v);
                    
118                    var lo = new List<object>();
                    
119                    while (Kernel.IterHasFlat(it, true))
                    
128        public static Variable DownCall(Variable list) {
                    
129            List<object> lo = new List<object>();
                    
130            VarDeque it = Builtins.start_iter(list);
                    
160        static void SerializeNam(Variable v, StringBuilder sb,
                    
161                List<object> refs) {
                    
162
                    
202            StringBuilder sb = new StringBuilder();
                    
203            List<object> refs = new List<object>();
                    
204            SerializeNam(nam, sb, refs);
                    
                
TestExpressionEvaluator.java https://github.com/amorton/hive.git | Java | 299 lines
                    
54  TypeInfo colaType;
                    
55  ArrayList<Object> data;
                    
56  ArrayList<String> names;
                    
72    try {
                    
73      data = new ArrayList<Object>();
                    
74      data.add(col1);
                    
                
ComposablePartExtensibilityTests.cs https://github.com/skolima/mono.git | C# | 292 lines
                    
253
                    
254                List<object> constructorArgs = new List<object>();
                    
255
                    
                
NotificationCenter.java https://gitlab.com/0072016/Telegram | Java | 276 lines
                    
112
                    
113    private SparseArray<ArrayList<Object>> observers = new SparseArray<>();
                    
114    private SparseArray<ArrayList<Object>> removeAfterBroadcast = new SparseArray<>();
                    
114    private SparseArray<ArrayList<Object>> removeAfterBroadcast = new SparseArray<>();
                    
115    private SparseArray<ArrayList<Object>> addAfterBroadcast = new SparseArray<>();
                    
116    private ArrayList<DelayedPost> delayedPosts = new ArrayList<>(10);
                    
198        broadcasting++;
                    
199        ArrayList<Object> objects = observers.get(id);
                    
200        if (objects != null && !objects.isEmpty()) {
                    
210                    int key = removeAfterBroadcast.keyAt(a);
                    
211                    ArrayList<Object> arrayList = removeAfterBroadcast.get(key);
                    
212                    for (int b = 0; b < arrayList.size(); b++) {
                    
220                    int key = addAfterBroadcast.keyAt(a);
                    
221                    ArrayList<Object> arrayList = addAfterBroadcast.get(key);
                    
222                    for (int b = 0; b < arrayList.size(); b++) {
                    
                
SessionImpl.java https://github.com/lawrence-lee/liferay-portal.git | Java | 391 lines
                    
178
                    
179		List<Object> scalarValues = defaultASTNodeListener.getScalarValues();
                    
180
                    
                
ClusteredQueryTest.java https://github.com/an1310/infinispan.git | Java | 281 lines
                    
221
                    
222      List<Object> results = cacheQuery.list();
                    
223      assert results.size() == 4 : cacheQuery.getResultSize();
                    
249
                    
250      List<Object> results = cacheQuery.list();
                    
251      assertEquals(1, results.size());
                    
                
itemAdd.java https://gitlab.com/imughal/invent | Java | 318 lines
                    
158
                    
159    public ArrayList<Object> adding(String cat_id, int rows) {
                    
160        loading(cat_id);
                    
168    ArrayList<String> itemName = new ArrayList<>();
                    
169    ArrayList<Object> rList = new ArrayList<>();
                    
170
                    
                
UserControllerRest.java https://gitlab.com/MarcinWorkDev/ISOP | Java | 263 lines
                    
106		
                    
107		List<Object> param = new ArrayList<Object>();
                    
108		param.add(id);
                    
                
TopologicalSortException.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 402 lines
                    
87
                    
88        ArrayList<Object> res = new ArrayList<Object>(vertexes.size());
                    
89
                    
                
DynaMenuModel.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 348 lines
                    
82    
                    
83    public void loadSubmenu(List<Object> cInstances, JMenu m, Map<Object,FileObject> cookiesToFiles) {
                    
84        // clear first - refresh the menu's content
                    
                
SourceLookup.java https://github.com/iw/elasticsearch.git | Java | 181 lines
                    
125     */
                    
126    public List<Object> extractRawValues(String path) {
                    
127        return XContentMapValues.extractRawValues(path, loadSourceIfNeeded());
                    
                
ListHDFSStoresFunctionJUnitTest.java https://gitlab.com/kidaa/incubator-geode.git | Java | 319 lines
                    
295
                    
296    private final List<Object> results = new LinkedList<Object>();
                    
297
                    
299
                    
300    protected List<Object> getResults() throws Throwable {
                    
301      if (t != null) {
                    
                
ClassDispatcher.java https://github.com/nscavell/crash.git | Java | 214 lines
                    
110    Map<String, Object> invokerOptions = this.options != null ? this.options : Collections.<String, Object>emptyMap();
                    
111    List<Object> invokerArgs = this.args != null ? this.args : Collections.emptyList();
                    
112
                    
132      if (from < to) {
                    
133        invokerArgs = new ArrayList<Object>(invokerArgs);
                    
134        while (from < to) {
                    
                
StandardStructObjectInspector.java https://github.com/steeve/hive.git | Java | 201 lines
                    
135    }
                    
136    // We support both List<Object> and Object[]
                    
137    // so we have to do differently.
                    
141    }
                    
142    int listSize = (isArray ? ((Object[]) data).length : ((List<Object>) data)
                    
143        .size());
                    
175    }
                    
176    List<Object> list = (List<Object>) data;
                    
177    assert (list.size() == fields.size());
                    
184  public Object create() {
                    
185    ArrayList<Object> a = new ArrayList<Object>(fields.size());
                    
186    for (int i = 0; i < fields.size(); i++) {
                    
194      Object fieldValue) {
                    
195    ArrayList<Object> a = (ArrayList<Object>) struct;
                    
196    MyField myField = (MyField) field;
                    
                
Response.java https://github.com/apache/geronimo-specs.git | Java | 515 lines
                    
128        for (String headerName : response.getHeaders().keySet()) {
                    
129            List<Object> headerValues = response.getHeaders().get(headerName);
                    
130            for (Object headerValue : headerValues) {
                    
                
EditorProvider.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 231 lines
                    
129        }
                    
130        List<Object> source = new ArrayList<Object>();
                    
131        source.add(document);
                    
                
OpenProjectAction.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 240 lines
                    
122
                    
123	private int evaluateSelection(IStructuredSelection selection, List<Object> allClosedProjects) {
                    
124		Object[] array= selection.toArray();
                    
168	public void run(IStructuredSelection selection) {
                    
169		List<Object> allClosedProjects= new ArrayList<Object>();
                    
170		int selectionStatus= evaluateSelection(selection, allClosedProjects);
                    
                
AbstractCxfWsdlFirstTest.java https://gitlab.com/matticala/apache-camel | Java | 140 lines
                    
111        org.apache.camel.Message out = exchange.getOut();
                    
112        List<Object> result =  out.getBody(List.class);
                    
113        assertEquals("The result list should not be empty", result.size(), 4);
                    
125            public void process(final Exchange exchange) {
                    
126                final List<Object> params = new ArrayList<>();
                    
127                Holder<String> personId = new Holder<>();
                    
                
SellerController.cs https://hg.codeplex.com/xenta | C# | 385 lines
                    
273            });
                    
274            var data = new List<Object>();
                    
275
                    
307            });
                    
308            var data = new List<Object>();
                    
309
                    
330            });
                    
331            var data = new List<Object>();
                    
332
                    
                
OppositeRestrictionsTest.java https://gitlab.com/MichelZuniga/drools | Java | 329 lines
                    
42
                    
43        Collection<Object> data = new ArrayList<Object>();
                    
44
                    
103
                    
104        Collection<Object> data = new ArrayList<Object>();
                    
105
                    
145
                    
146        Collection<Object> data = new ArrayList<Object>();
                    
147
                    
187
                    
188        Collection<Object> data = new ArrayList<Object>();
                    
189
                    
229
                    
230        Collection<Object> data = new ArrayList<Object>();
                    
231
                    
                
ContactPersistenceTest.java https://github.com/viktorkovacs/liferay-portal-trunk.git | Java | 285 lines
                    
220
                    
221		List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery);
                    
222
                    
238
                    
239		List<Object> result = _persistence.findWithDynamicQuery(dynamicQuery);
                    
240
                    
                
Method.java https://gitlab.com/jaragan/jersey | Java | 286 lines
                    
69    @XmlAnyElement(lax = true)
                    
70    protected List<Object> any;
                    
71    @XmlAttribute(name = "id")
                    
188     */
                    
189    public List<Object> getAny() {
                    
190        if (any == null) {
                    
190        if (any == null) {
                    
191            any = new ArrayList<Object>();
                    
192        }
                    
                
PSSessionConfigurationData.cs https://gitlab.com/unofficial-mirrors/PowerShell | C# | 237 lines
                    
34
                    
35        internal List<object> ModulesToImportInternal
                    
36        {
                    
152        private List<string> _modulesToImport;
                    
153        private List<object> _modulesToImportInternal;
                    
154
                    
190                        _modulesToImport = new List<string>();
                    
191                        _modulesToImportInternal = new List<object>();
                    
192                        object[] modulesToImport = optionValue.Split(new[] { "," }, StringSplitOptions.RemoveEmptyEntries);
                    
223            if (_modulesToImport == null) _modulesToImport = new List<string>();
                    
224            if (_modulesToImportInternal == null) _modulesToImportInternal = new List<object>();
                    
225        }
                    
                
PredicateFinderVisitor.java https://bitbucket.org/rsaqc/netbeans-soa.git | Java | 240 lines
                    
190                }
                    
191                DirectedList<Object> predicatePath = BpelPathConverter.singleton().
                    
192                        constructObjectLocationList(stepContext, true, true);
                    
209                    case NODE:
                    
210                        DirectedList<Object> sStepPath = BpelPathConverter.singleton().
                    
211                                constructObjectLocationList(stepContext, true, true);
                    
226                    case PROCESSING_INSTR:
                    
227                        DirectedList<Object> sStepPath = BpelPathConverter.singleton().
                    
228                                constructObjectLocationList(stepContext, true, true);
                    
                
MeasurementData.java https://github.com/cos/Jmol_parallelization.git | Java | 203 lines
                    
49  public int tokAction;
                    
50  public List<Object> points;
                    
51  public float[] rangeMinMax;
                    
60   */
                    
61  public MeasurementData(List<Object> points, int tokAction,
                    
62                 float[] rangeMinMax, String strFormat, String units,
                    
                
Injectionist.cs https://github.com/rebus-org/Rebus.git | C# | 258 lines
                    
183        readonly Dictionary<Type, object> _instances = new Dictionary<Type, object>();
                    
184        readonly List<object> _resolvedInstances = new List<object>();
                    
185
                    
                
DocumentAnalysisResponse.java https://github.com/adsabs/solr-affiliation-disambiguation.git | Java | 250 lines
                    
44
                    
45    NamedList<Object> analysis = (NamedList<Object>) response.get("analysis");
                    
46    for (Map.Entry<String, Object> documentEntry : analysis) {
                    
47      DocumentAnalysis documentAnalysis = new DocumentAnalysis(documentEntry.getKey());
                    
48      NamedList<Object> document = (NamedList<Object>) documentEntry.getValue();
                    
49      for (Map.Entry<String, Object> fieldEntry : document) {
                    
52
                    
53        NamedList<Object> query = (NamedList<Object>) field.get("query");
                    
54        if (query != null) {
                    
58
                    
59        NamedList<Object> index = (NamedList<Object>) field.get("index");
                    
60        for (Map.Entry<String, Object> valueEntry : index) {
                    
61          String fieldValue = valueEntry.getKey();
                    
62          NamedList<Object> valueNL = (NamedList<Object>) valueEntry.getValue();
                    
63          List<AnalysisPhase> phases = buildPhases(valueNL);
                    
                
TestLoopThroughConditionsInAlgoFile.java https://bitbucket.org/Sathishsatz/iso-consumption-parser.git | Java | 360 lines
                    
132		
                    
133		List<Object> scopeList = new ArrayList<Object>();
                    
134		scopeList.addAll(reference.getContent());
                    
                
CxfHeaderHelper.java https://gitlab.com/matticala/apache-camel | Java | 312 lines
                    
171    public static void propagateCxfHeadersToCamelHeaders(HeaderFilterStrategy strategy,
                    
172            Map<String, List<Object>> responseHeaders, Map<String, Object> camelHeaders,
                    
173            Exchange camelExchange) throws Exception {
                    
                
TestDocumentObjectBinder.java https://bitbucket.org/jmblair/lucene-solr.git | Java | 260 lines
                    
45    XMLResponseParser parser = new XMLResponseParser();
                    
46    NamedList<Object> nl = parser.processResponse(new StringReader(xml));
                    
47    QueryResponse res = new QueryResponse(nl, null);
                    
88    XMLResponseParser parser = new XMLResponseParser();
                    
89    NamedList<Object> nl = parser.processResponse(new StringReader(xml));
                    
90    QueryResponse res = new QueryResponse(nl, null);
                    
                
Array.cs https://bitbucket.org/mdavid/dlr.git | C# | 170 lines
                    
151                int dimensions = 1;
                    
152                List<object> shape = new List<object>();
                    
153                shape.Add((BigInteger)__len__());
                    
                
AbstractDialogDescriptor.java https://bitbucket.org/rsaqc/netbeans-soa.git | Java | 176 lines
                    
146    protected void setOptionClosable(Object option, boolean flag) {
                    
147        List<Object> cOptions =
                    
148                new ArrayList<Object>(Arrays.asList(getClosingOptions()));
                    
                
ContratacionAutenticacionServiceProxy.java https://gitlab.com/edddea/api_contratacion_arq | Java | 224 lines
                    
36    @Override
                    
37    public ArrayList<Object> getListaDatos() {
                    
38
                    
42        final ContratacionAutenticacionDelegate delegate = (ContratacionAutenticacionDelegate) baseDelegateCommons;
                    
43        ArrayList<Object> list = delegate.consultaOperationsDelegate().getDatosTablaConfirmacion();
                    
44        return list;
                    
                
GenericQuery.java https://gitlab.com/age-agh/age-legacy | Java | 244 lines
                    
148
                    
149			List<Object> list = Lists.newArrayList();
                    
150
                    
                
CassandraFetchFieldManager.java git://github.com/PedroGomes/datanucleus-cassandra.git | Java | 331 lines
                    
218
                    
219                List<Object> mapping = (List<Object>) value;
                    
220
                    
220
                    
221                Collection<Object> collection = new ArrayList<Object>(mapping.size());
                    
222                for (Object id : mapping) {
                    
                
CMISRepositoryHandler.java https://github.com/lululiferay/liferay-portal.git | Java | 521 lines
                    
218	@Override
                    
219	public List<Object> getFoldersAndFileEntries(
                    
220			long folderId, int start, int end, OrderByComparator obc)
                    
227	@Override
                    
228	public List<Object> getFoldersAndFileEntries(
                    
229			long folderId, String[] mimeTypes, int start, int end,
                    
                
IncompatibilityRestrictionsTest.java https://gitlab.com/MichelZuniga/drools | Java | 306 lines
                    
43
                    
44        Collection<Object> data = new ArrayList<Object>();
                    
45
                    
106
                    
107        Collection<Object> data = new ArrayList<Object>();
                    
108
                    
169
                    
170        Collection<Object> data = new ArrayList<Object>();
                    
171
                    
232
                    
233        Collection<Object> data = new ArrayList<Object>();
                    
234
                    
                
GatherRequestsQueue.java https://bitbucket.org/lp/programming-multiactivities.git | Java | 315 lines
                    
75    private GatherFuturesHandler futuresHandler; // primitive pooling
                    
76    private List<Object> connectedClientItfs; // consistency?
                    
77    private Map<ItfID, ComponentRequest> requests;
                    
92    public GatherRequestsQueue(PAComponent owner, String serverItfName, Method itfTypeMethod,
                    
93            List<Object> connectedClientItfs, GatherFuturesHandlerPool gatherFuturesHandlerPool) {
                    
94        //this.owner = owner;
                    
126            // Non synchronized method, we should not expect other request
                    
127            connectedClientItfs = new ArrayList<Object>();
                    
128            connectedClientItfs.add(clientItfID);
                    
279     */
                    
280    public List<Object> getConnectedClientItfs() {
                    
281        return connectedClientItfs;
                    
                
FeedItemAnimator.java https://gitlab.com/thanhbc/instamaterial | Java | 251 lines
                    
43                                                     @NonNull RecyclerView.ViewHolder viewHolder,
                    
44                                                     int changeFlags, @NonNull List<Object> payloads) {
                    
45        if (changeFlags == FLAG_CHANGED) {
                    
                
AnimationEngine.java https://bitbucket.org/erab6887/devgui2.git | Java | 429 lines
                    
50	//will hold all object that should be called by the animation engine when there's animations to be done
                    
51	private ArrayList<Object> animatableTargets = new ArrayList<Object>();	
                    
52
                    
                
SimpleKeyBindingManager.java https://bitbucket.org/kingbowser/hysteria-spoutcraft.git | Java | 358 lines
                    
156			FileWriter writer = new FileWriter(getBindingsFile());
                    
157			ArrayList<Object> kbsave = new ArrayList<Object>();
                    
158			for (KeyBinding binding:bindings) {
                    
170			writer = new FileWriter(getShortcutsFile());
                    
171			ArrayList<Object> shsave = new ArrayList<Object>();
                    
172			for (Shortcut sh:shortcuts) {
                    
207			bindings = new ArrayList<KeyBinding>();
                    
208			ArrayList<Object> kbsave = yaml.loadAs(new FileReader(getBindingsFile()), ArrayList.class);
                    
209			if (kbsave == null) {
                    
209			if (kbsave == null) {
                    
210				kbsave = new ArrayList<Object>();
                    
211			}
                    
238			shortcuts.clear();
                    
239			ArrayList<Object> shsave = yaml.loadAs(new FileReader(getShortcutsFile()), ArrayList.class);
                    
240			if (shsave == null) {
                    
                
NotationLLSD.cs https://github.com/kow/gridsearch.git | C# | 346 lines
                    
106                    int pos = 0;
                    
107                    List<object> array = new List<object>();
                    
108
                    
                
SelectAlgorithmAndInputPanel.java git://github.com/lessthanoptimal/BoofCV.git | Java | 331 lines
                    
52	protected JCheckBox originalCheck;
                    
53	List<Object>[] algCookies;
                    
54	// list of input names and where to get the inputs
                    
                
AbstractImageEntry.java https://github.com/lcamilo15/cfeclipse.git | Java | 161 lines
                    
16	HashSet<IStoreImageListener> images = new HashSet<IStoreImageListener>();
                    
17	protected ArrayList<Object> imageList = new ArrayList<Object>();
                    
18
                    
23	public synchronized Collection<?> getContents() {
                    
24		return new ArrayList<Object>(this.imageList);
                    
25	}
                    
129
                    
130	private void process(ArrayList<Object> ls, JarFile jar, File f) {
                    
131		final Enumeration<JarEntry> entries = jar.entries();
                    
                
CoordinatedBolt.java https://gitlab.com/hackbuteer59/jstorm | Java | 379 lines
                    
73		public List<Integer> emit(String stream, Collection<Tuple> anchors,
                    
74				List<Object> tuple) {
                    
75			List<Integer> tasks = _delegate.emit(stream, anchors, tuple);
                    
80		public void emitDirect(int task, String stream,
                    
81				Collection<Tuple> anchors, List<Object> tuple) {
                    
82			updateTaskCounts(tuple.get(0), Arrays.asList(task));
                    
                
MultiContextEventEndpointTest.java https://gitlab.com/matticala/apache-camel | Java | 190 lines
                    
142
                    
143        private final List<Object> objectEvents = new ArrayList<>();
                    
144
                    
166
                    
167        List<Object> getObjectEvents() {
                    
168            return objectEvents;
                    
                
Part4.java https://github.com/JensErat/basex.git | Java | 204 lines
                    
113
                    
114    List<Object> list = new ArrayList<>();
                    
115    list.add(conn.createItemFromInt(1, null));
                    
                
org.apache.commons.collections.collection.TransformedCollection.cs https://github.com/gadfly/nofs.git | C# | 129 lines
                    
107        {
                    
108            java.util.List<Object> list = new java.util.ArrayList<Object>(coll.size());
                    
109            for (java.util.Iterator<Object> it = coll.iterator(); it.hasNext(); )
                    
                
Data_typesItemProviderAdapterFactory.java https://gitlab.com/jgsuess/uml-1.4.2 | Java | 467 lines
                    
61	 */
                    
62	protected Collection<Object> supportedTypes = new ArrayList<Object>();
                    
63
                    
                
Jt400PgmProducer.java https://github.com/gnodet/camel.git | Java | 229 lines
                    
167
                    
168        List<Object> results = new ArrayList<>();
                    
169
                    
                
RVTypeAnnotationUser.java https://bitbucket.org/delors/opal.git | Java | 114 lines
                    
77    public @RVTypeAnnotation("return type") Function<@RVTypeAnnotation("first parameter of generic type") Object,  @RVTypeAnnotation("second parameter of generic type") Integer> methodSignatureRelatedTypeAnnotations() throws Exception {
                    
78        List<Object> l = new ArrayList<>();
                    
79        return (l::indexOf);
                    
                
SymbolResolver.cs https://github.com/pruiz/mono.git | C# | 424 lines
                    
41            {
                    
42                List<object> values = new List<object>(this.symbols.Count);
                    
43
                    
                
WebSocketExtensionTestUtil.java https://gitlab.com/taichu/netty | Java | 129 lines
                    
99        protected void encode(ChannelHandlerContext ctx, WebSocketFrame msg,
                    
100                List<Object> out) throws Exception {
                    
101            // unused
                    
107        protected void decode(ChannelHandlerContext ctx, WebSocketFrame msg,
                    
108                List<Object> out) throws Exception {
                    
109            // unused
                    
115        protected void encode(ChannelHandlerContext ctx, WebSocketFrame msg,
                    
116                List<Object> out) throws Exception {
                    
117            // unused
                    
123        protected void decode(ChannelHandlerContext ctx, WebSocketFrame msg,
                    
124                List<Object> out) throws Exception {
                    
125            // unused
                    
                
PointerType.cs https://bitbucket.org/mdavid/dlr.git | C# | 287 lines
                    
163
                    
164            MarshalCleanup INativeType.EmitMarshalling(ILGenerator/*!*/ method, LocalOrArg argIndex, List<object>/*!*/ constantPool, int constantPoolArgument) {
                    
165                Type argumentType = argIndex.Type;
                    
270
                    
271            void INativeType.EmitReverseMarshalling(ILGenerator method, LocalOrArg value, List<object> constantPool, int constantPoolArgument) {
                    
272                value.Emit(method);
                    
                
ClpSerializer.java https://github.com/l15k4/liferay-plugins.git | Java | 344 lines
                    
109	public static Object translateInput(List<Object> oldList) {
                    
110		List<Object> newList = new ArrayList<Object>(oldList.size());
                    
111
                    
217		else if (obj instanceof List<?>) {
                    
218			return translateInput((List<Object>)obj);
                    
219		}
                    
237	public static Object translateOutput(List<Object> oldList) {
                    
238		List<Object> newList = new ArrayList<Object>(oldList.size());
                    
239
                    
253		else if (obj instanceof List<?>) {
                    
254			return translateOutput((List<Object>)obj);
                    
255		}
                    
                
ShadowDocument.java https://gitlab.com/Liang1Zhang/stetho | Java | 374 lines
                    
105
                    
106    public void setElementChildren(Object element, List<Object> children) {
                    
107      // If we receive redundant information, then nothing needs to be done.
                    
224
                    
225      List<Object> children = (changesElementInfo != null)
                    
226          ? changesElementInfo.children
                    
                
Serialization.cs https://github.com/mkol/il2js.git | C# | 474 lines
                    
72 {
                    
73	 List<object> ret = new List<object>();
                    
74	 ++this.position;// /\[/
                    
239		object ISerializer.Deserialize(object source) {
                    
240			var values = (List<object>)source;
                    
241			var ret = (IList)typeof(List<>).MakeGenericType(this.type).GetConstructor(Type.EmptyTypes).Invoke(null);
                    
263		object ISerializer.Deserialize(object source) {
                    
264			var values = (List<object>)source;
                    
265			var ret = Array.CreateInstance(this.type, values.Count);
                    
444
                    
445		public static List<object> Deserialize(HttpContext context, params Type[] types) {
                    
446
                    
456
                    
457			var ret = (List<object>)new Parser().Parse(s);
                    
458			for (int i = 0; i < types.Length; ++i) {
                    
                
ResolutionNode.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 251 lines
                    
40
                    
41    private final List<Object> parents;
                    
42
                    
66        depth = parent.depth + 1;
                    
67        parents = new ArrayList<Object>();
                    
68        parents.addAll( parent.parents );
                    
                
WatchmanWatcher.java https://gitlab.com/smartether/buck | Java | 437 lines
                    
139    // Exclude any expressions added to this list.
                    
140    List<Object> excludeAnyOf = Lists.newArrayList("anyof");
                    
141
                    
205  @VisibleForTesting
                    
206  ImmutableList<Object> getWatchmanQuery(Path cellPath) {
                    
207    if (queries.containsKey(cellPath) && cursors.containsKey(cellPath)) {
                    
                
CriterionValue.java https://gitlab.com/XMCDA-library/XMCDA-java | Java | 276 lines
                    
69    })
                    
70    protected List<Object> valueOrValues;
                    
71    @XmlAttribute(name = "id")
                    
196     */
                    
197    public List<Object> getValueOrValues() {
                    
198        if (valueOrValues == null) {
                    
198        if (valueOrValues == null) {
                    
199            valueOrValues = new ArrayList<Object>();
                    
200        }
                    
                
MySQLObjectDAO.java https://bitbucket.org/Alexey_Ch/blagoswarehouse.git | Java | 141 lines
                    
119        ResultSet resultSet = selectObjectResultSet();
                    
120        List<Object> objectList = new ArrayList<Object>();
                    
121        LOG.debug("method: getObjects");
                    
                
Storage.java https://gitlab.com/briljant/briljant | Java | 171 lines
                    
35 */
                    
36public interface Storage extends DoubleSequence, ComplexSequence, IntSequence, List<Object> {
                    
37
                    
                
TreeFinderProcessor.java https://bitbucket.org/rsaqc/netbeans-soa.git | Java | 421 lines
                    
129     */
                    
130    public List<Object> findAllDataObjects(List<TreeItemFinder> finderList) {
                    
131        if (finderList == null || finderList.isEmpty()) {
                    
134        //
                    
135        ArrayList<List<Object>> foundLocations = new ArrayList<List<Object>>();
                    
136        //
                    
144        //
                    
145        ArrayList<Object> result = new ArrayList<Object>();
                    
146        for (List<Object> location : foundLocations) {
                    
181        //
                    
182        ArrayList<List<Object>> foundLocations = new ArrayList<List<Object>>();
                    
183        //
                    
192        ArrayList<TreePath> result = new ArrayList<TreePath>();
                    
193        for (List<Object> location : foundLocations) {
                    
194            TreePath treePath = new TreePath(location.toArray());
                    
                
DuplicateEncounterTypeNameChangeSet.java https://gitlab.com/namratanehete/lh-toolkit | Java | 205 lines
                    
120					
                    
121					List<List<Object>> duplicateResult = null;
                    
122					boolean duplicateName = false;
                    
                
MapJoinDoubleKeys.java https://github.com/steeve/hive.git | Java | 184 lines
                    
102
                    
103      ArrayList<Object> list = (ArrayList<Object>) ObjectInspectorUtils.copyToStandardObject(ctx
                    
104          .getSerDe().deserialize(val), ctx.getSerDe().getObjectInspector(),
                    
128
                    
129      ArrayList<Object> list = MapJoinMetaData.getList();
                    
130      list.add(obj1);
                    
                
ConfirmacionRegistroDelegate.java https://gitlab.com/edddea/api_contratacion_arq | Java | 313 lines
                    
294	@Override
                    
295	public ArrayList<Object> getDatosRegistroOp() {
                    
296		return opDelegate.getDatosTablaConfirmacion();
                    
299	@Override
                    
300	public ArrayList<Object> getDatosRegistroExitoso() {
                    
301		return opDelegate.getDatosRegistroExitoso();
                    
                
UserProperty.java https://gitlab.com/rovero/2016mpcs53013-qydeng | Java | 496 lines
                    
291  public int hashCode() {
                    
292    List<Object> list = new ArrayList<Object>();
                    
293
                    
                
OriginalMetadataRequestTest.java https://github.com/ximenesuk/openmicroscopy.git | Java | 167 lines
                    
92		@SuppressWarnings("unchecked")
                    
93		List<Object> rv = (List<Object>) user.ex.execute(ctx, user
                    
94				.getPrincipal(), new Executor.SimpleWork(this, "testRequest") {
                    
95			@Transactional(readOnly = false)
                    
96			public List<Object> doWork(Session session, ServiceFactory sf) {
                    
97
                    
98				// from HandleI.steps()
                    
99				List<Object> rv = new ArrayList<Object>();
                    
100
                    
                
GroupManager.java https://github.com/elBukkit/PersistencePlugin.git | Java | 403 lines
                    
381                    {
                    
382                        List<Object> playerPermissions = (List<Object>)checkList;
                    
383                        
                    
                
CorePipelineProviderImpl.java https://github.com/esteban-aliverti/droolsjbpm-integration.git | Java | 131 lines
                    
113
                    
114    public ListAdapter newListAdapter(List<Object> list,
                    
115                                      boolean syncAccessors) {
                    
                
QueryCommand.cs https://bitbucket.org/moisesmiranda/subsonic-4.git | C# | 408 lines
                    
173        /// </summary>
                    
174        public List<object> OutputValues;
                    
175
                    
187            parameters = new QueryParameterCollection();
                    
188            OutputValues = new List<object>();
                    
189            Provider = provider;
                    
                
ComplaintsController.java https://bitbucket.org/Venkata_blickx/mycableproduction.git | Java | 270 lines
                    
177	@RequestMapping(value="/getComplaintStatusDetails",method = RequestMethod.GET, headers="Accept=application/json" )
                    
178	public @ResponseBody List<Object> getComplaintStatus(@PathVariable("client_id") String client_id)   {
                    
179
                    
180		
                    
181		List<Object> resultToAngular = new ArrayList<Object>();
                    
182		ComplaintStatusTo status = complaintService.getComplaintStatus(client_id);
                    
192		
                    
193		List<Object> result = new ArrayList<Object>();
                    
194		result.add(resultToAngular);
                    
                
MessageDatabase.java https://bitbucket.org/gmsconstantino/urop_project.git | Java | 451 lines
                    
70//                	//so that the sender counts to the statistics
                    
71//                    LinkedList<Object> list = new LinkedList<Object>();
                    
72//                    list.add(new MessagePassageEntry((Short)routing.getUniqueId(),(Short)routing.getNode().getId(),routing.getForwardingTable().getHopDistanceToBS()));
                    
                
BlockRPlacer.java https://gitlab.com/MineYourMind/ThaumicTinkerer | Java | 194 lines
                    
84    @Override
                    
85    public ArrayList<Object> getSpecialParameters() {
                    
86        return null;
                    
                
AbstractYamlReader.java https://gitlab.com/CORP-RESELLER/SeLion | Java | 152 lines
                    
85
                    
86    protected List<String> parseKeysForContainer(String fileName, List<Object> allElements) {
                    
87        List<String> elementKeys = new ArrayList<String>();
                    
                
ResultRowList.java https://gitlab.com/jsr38/intermine | Java | 237 lines
                    
29 */
                    
30public class ResultRowList implements List<Object>, Iterable<Object>
                    
31{
                    
147    public Iterator<Object> iterator() {
                    
148        List<Object> values = getValuesInternal();
                    
149        return values.iterator();
                    
170    private List<Object> getValuesInternal() {
                    
171        List<Object> values = new ArrayList<Object>();
                    
172        for (int i = 0; i < data.length(); i++) {
                    
222    @Override
                    
223    public List<Object> subList(int arg0, int arg1) {
                    
224        return getValuesInternal().subList(arg0, arg1);
                    
                
LazyObjectInspectorFactory.java https://github.com/steeve/hive.git | Java | 141 lines
                    
48      byte escapeChar) {
                    
49    ArrayList<Object> signature = new ArrayList<Object>();
                    
50    signature.add(structFieldNames);
                    
67
                    
68  static HashMap<ArrayList<Object>, LazyListObjectInspector> cachedLazySimpleListObjectInspector = new HashMap<ArrayList<Object>, LazyListObjectInspector>();
                    
69
                    
72      Text nullSequence, boolean escaped, byte escapeChar) {
                    
73    ArrayList<Object> signature = new ArrayList<Object>();
                    
74    signature.add(listElementObjectInspector);
                    
88
                    
89  static HashMap<ArrayList<Object>, LazyMapObjectInspector> cachedLazySimpleMapObjectInspector = new HashMap<ArrayList<Object>, LazyMapObjectInspector>();
                    
90
                    
95      byte escapeChar) {
                    
96    ArrayList<Object> signature = new ArrayList<Object>();
                    
97    signature.add(mapKeyObjectInspector);
                    
                
TypeVariableDefinition.cs https://github.com/primax/WCell.git | C# | 304 lines
                    
201							//collection = (IList)Activator.CreateInstance(varType);
                    
202							collection = new List<object>();
                    
203							ReadCollection(reader, collection);
                    
                
SkewJoinHandler.java https://github.com/steeve/hive.git | Java | 357 lines
                    
93  Configuration hconf = null;
                    
94  List<Object> dummyKey = null;
                    
95  String taskId;
                    
165      Byte alias = conf.getTagOrder()[i];
                    
166      RowContainer<ArrayList<Object>> rc = (RowContainer)joinOp.storage.get(Byte
                    
167          .valueOf((byte) i));
                    
179      String specPath = conf.getBigKeysDirMap().get((byte) currBigKeyTag);
                    
180      RowContainer<ArrayList<Object>> bigKey = (RowContainer)joinOp.storage.get(Byte
                    
181          .valueOf((byte) currBigKeyTag));
                    
189        }
                    
190        RowContainer<ArrayList<Object>> values = (RowContainer)joinOp.storage.get(Byte
                    
191            .valueOf((byte) i));
                    
213      joinOp.newGroupStarted = false;
                    
214      dummyKey = (List<Object>) joinOp.getGroupKeyObject();
                    
215      skewKeyInCurrentGroup = false;
                    
                
ObjectLiteralImpl.java https://github.com/FURCAS-dev/FURCAS.git | Java | 251 lines
                    
157        try {
                    
158            Boolean result = (Boolean) IS_EQUAL_TO_OBJECT_LITERAL__EINVOCATION_DELEGATE.dynamicInvoke(this, new BasicEList.UnmodifiableEList<Object>(1, new Object[]{o}));
                    
159            return result;
                    
                
SecurityContextToken.java https://github.com/pinopisello/SpringInAction.git | Java | 262 lines
                    
94    public SecurityContextToken(SecurityContextTokenType sTokenType, SOAPVersion sv){
                    
95        List<Object> list = sTokenType.getAny();
                    
96        for (int i = 0; i < list.size(); i++) {
                    
                
GraphDescBuilder.java https://gitlab.com/mesophoyx/jrds | Java | 171 lines
                    
151
                    
152    List<Object> enumerateTree(JrdsElement roottree) {
                    
153        if(roottree == null)
                    
158
                    
159        List<Object> pathString = new ArrayList<Object>(path.size());
                    
160        for(JrdsElement te: path) {
                    
                
URLParser.cs https://github.com/kuba85/sones.git | C# | 440 lines
                    
181        /// <returns>The methodInfo callback and the optional parameters</returns>
                    
182        public Tuple<UrlNode, List<Object>> GetCallback(String url, String webMethod = "GET")
                    
183        {
                    
205
                    
206            return GetCallback(_RootNodes[webMethod], urlParts, new List<Object>(), url, 0);
                    
207
                    
218        /// <returns></returns>
                    
219        private Tuple<UrlNode, List<Object>> GetCallback(Dictionary<String, UrlNode> urlNodes, IEnumerable<String> urlParts, List<Object> parameters, String url, Int32 posInUrl)
                    
220        {
                    
252                    posInUrl = url.Length;
                    
253                    return new Tuple<UrlNode, List<object>>(curUrlNode, parameters);
                    
254                }
                    
290                // we have some more childs defined
                    
291                Tuple<UrlNode, List<object>> retval = null;
                    
292                var newParams = new List<Object>();
                    
                
PropertyDeluxeTest.java https://bitbucket.org/half_the_bird/sawdust_core.git | Java | 282 lines
                    
196    public void testGetList3() {
                    
197        List<List<Object>> list = new LinkedList<List<Object>>();
                    
198        Object[] d = data.get(keys.get(7));
                    
198        Object[] d = data.get(keys.get(7));
                    
199        List<Object> list1 = new LinkedList<Object>();
                    
200        List<Object> list2 = new LinkedList<Object>();
                    
200        List<Object> list2 = new LinkedList<Object>();
                    
201        List<Object> list3 = new LinkedList<Object>();
                    
202        list1.add(d[1]);
                    
262    public void testGetMap4() {
                    
263        Map<Object,Map<Object,List<Object>>> map = new HashMap<Object,Map<Object,List<Object>>>();
                    
264        Object[] d = data.get(keys.get(11));
                    
264        Object[] d = data.get(keys.get(11));
                    
265        List<Object> list1 = new LinkedList<Object>();
                    
266        List<Object> list2 = new LinkedList<Object>();
                    
                
ReplayingDecoderTest.java https://bitbucket.org/htdzzc/netty.git | Java | 316 lines
                    
69        @Override
                    
70        protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) {
                    
71            ByteBuf msg = in.readBytes(in.bytesBefore((byte) '\n'));
                    
143            @Override
                    
144            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
145                assertFalse(removed);
                    
165            @Override
                    
166            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
167                assertFalse(removed);
                    
191            @Override
                    
192            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
193                assertFalse(removed);
                    
216            @Override
                    
217            protected void decode(ChannelHandlerContext ctx, ByteBuf in, List<Object> out) throws Exception {
                    
218                int readable = in.readableBytes();
                    
                
Stringify.java https://gitlab.com/github-cloud-corp/poll-mailbox-trigger-plugin | Java | 405 lines
                    
218        }
                    
219        List<Object> list = new ArrayList<Object>();
                    
220        while (allHeaders.hasMoreElements()) {
                    
359        }
                    
360        List<Object> tmp = new ArrayList<Object>();
                    
361        tmp.addAll(Arrays.asList(flags.getSystemFlags()));
                    
                
Pcl.Dynamic.cs https://github.com/sidecut/ServiceStack.git | C# | 188 lines
                    
59                {
                    
60                    container[mapKey] = DeserializeList<List<object>, TSerializer>.Parse(elementValue);
                    
61                }
                    
                
FetchLookupFieldsPhaseTests.java https://github.com/elasticsearch/elasticsearch.git | Java | 209 lines
                    
82                    final TermQueryBuilder query = (TermQueryBuilder) r.source().query();
                    
83                    final Map<String, List<Object>> fields = switch (query.value().toString()) {
                    
84                        case "term_1" -> Map.of("field_a", List.of("a1", "a2"), "field_b", List.of("b2"));
                    
                
InputListModel.java git://github.com/bcdev/beam.git | Java | 179 lines
                    
36
                    
37    private final List<Object> list = new ArrayList<>();
                    
38    private List<Product> sourceProducts = new ArrayList<>();
                    
96    void removeElementsAt(int[] selectedIndices) {
                    
97        List<Object> toRemove = new ArrayList<>();
                    
98        int startIndex = Integer.MAX_VALUE;
                    
                
EditarCajero.java https://gitlab.com/victorprens/SADIN | Java | 308 lines
                    
25    Coordinador coordinador;
                    
26    List<Object> campos;
                    
27    List<Object> botones;
                    
                
ListUtils.java https://bitbucket.org/maxgoebel/tableannotator.git | Java | 237 lines
                    
49	public static void unique (Collection<?> list) {
                    
50		Collection<Object> copyList = new LinkedList<Object> ();
                    
51		Iterator<?> it = list.iterator();
                    
89	public static List<Object> toList(Object[] objs) {
                    
90		List<Object> l = new LinkedList<Object>();
                    
91		for (int i=0; i<objs.length; i++) {
                    
                
NotificationHistoryResponse.java http://grails-google-checkout.googlecode.com/svn/trunk/ | Java | 339 lines
                    
289        })
                    
290        protected List<Object> newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification;
                    
291
                    
319         */
                    
320        public List<Object> getNewOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification() {
                    
321            if (newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification == null) {
                    
321            if (newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification == null) {
                    
322                newOrderNotificationOrOrderStateChangeNotificationOrChargeAmountNotification = new ArrayList<Object>();
                    
323            }
                    
                
 

Source

Language