text
stringlengths
7
995k
package rx.operators; import rx.Observable.Operator; import rx.Observer; import rx.Subscriber; import rx.functions.Action1; import rx.functions.Action2; import rx.functions.Func1; import rx.plugins.DebugNotification; public final class DebugSubscriber<T, C> extends Subscriber<T> { private final Func1<T, T> onNext...
package org.samcrow.data.provider; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import org.samcrow.colonynavigator3.data.Colony; import org.samcrow.colonynavigator3.data.ColonyList; /** * Provides colonies from a hard-coded list. * * This implementation does not support th...
package org.ee.i18n.gettext; import java.util.Collections; import java.util.Map; import java.util.function.Function; public class Mo { private final Map<String, String[]> translations; private final int numPlurals; private final Function<Integer, Integer> pluralForm; private final String pluralFormString; publi...
package com.trining.design.interpreter.calculate; public class AddInterpreter extends Interpreter { public AddInterpreter(IArithmeticInterpreter left, IArithmeticInterpreter right) { super(left, right); } public int interpret() { return this.left.interpret() + this.right.interpret(); ...
/* gnu.classpath.tools.doclets.DocletConfigurationException Copyright (C) 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; ...
package com.linkedin.pinot.controller.api.restlet.resources; import java.io.File; import java.io.IOException; import org.apache.commons.io.FileUtils; import org.restlet.data.Status; import org.restlet.representation.Representation; import org.restlet.representation.StringRepresentation; import org.restlet.resource.Pu...
/* * This file is part of Sponge, licensed under the MIT License (MIT). * * Copyright (c) SpongePowered <https://www.spongepowered.org> * Copyright (c) contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Softwar...
/* * Copyright (C) 2006 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
package com.cooperathon.justinemoves; import android.app.Service; import android.util.Log; import com.google.firebase.iid.FirebaseInstanceId; import com.google.firebase.iid.FirebaseInstanceIdService; public class MyFirebaseInstanceIDService extends FirebaseInstanceIdService { private static final String TAG = ...
/* * Copyright 2013 Bazaarvoice, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
package security.library.dataflow; public class RmiFlowImpl implements RmiFlow { public String listDirectory(String path) throws java.io.IOException { String command = "ls " + path; Runtime.getRuntime().exec(command); return "pretend there are some results here"; } public String notRemotable(String path) thr...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
/* * Copyright (C) 2017-2019 Dremio Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable l...
/* * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
package tasks.task13.code; import java.util.HashSet; import java.util.List; public class TestGenerator { public HashSet<Question> fetchQuestionList(List<Question> allQuestions, byte marks) { return new HashSet<>(); } public HashSet<Question> createTest(List<Question> allQuestions) { retur...
package au.gov.qld.fire.jms.dao; import au.gov.qld.fire.dao.BaseDao; import au.gov.qld.fire.dao.DaoException; import au.gov.qld.fire.jms.domain.file.FileArchive; /** * Archive DAO pattern. * @author Valeri SHIBAEV (mailto:shibaevv@apollosoft.net) */ public interface FileArchiveDao extends BaseDao<FileArchive> { ...
package tech.jhipster.lite.generator.server.springboot.springcloud.configclient.domain; import tech.jhipster.lite.generator.buildtool.generic.domain.Dependency; public class SpringCloudConfig { private static final String SPRING_CLOUD_VERSION = "2021.0.0"; private static final String JHIPSTER_REGISTRY_DOCKER_IMA...
package beaform.importer; public interface SAXHandlerMaster { void gainControl(); }
/** * AET * * Copyright (C) 2013 Cognifide Limited * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
/* * MIT License * * Copyright (c) 2019 Antoine James Tournepiche * * This source file come from Just another Stack Calculator * Repository : https://github.com/AntoineJT/jasc * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files ...
/* * Copyright (C) 2014 Square, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agre...
/* * Copyright(C) 2020-21 Application Library Engineering Group * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ...
// // Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 // Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. // Gerado ...
package com.zandero.rest; import com.zandero.rest.data.*; import com.zandero.rest.reader.CustomWordListReader; import com.zandero.rest.test.*; import com.zandero.utils.StringUtils; import io.vertx.core.http.HttpMethod; import org.junit.jupiter.api.Test; import java.lang.reflect.Method; import java.util.*; import sta...
/* * ja, a Java-bytecode translator toolkit. * Copyright (C) 1999- Shigeru Chiba. All Rights Reserved. * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. Alternatively, the contents of this file...
/** * Copyright (c) 2016-2019 人人开源 All rights reserved. * * https://www.renren.io * * 版权所有,侵权必究! */ package com.cube.service; import com.baomidou.mybatisplus.extension.service.IService; import com.cube.entity.UserEntity; import com.cube.form.LoginForm; import java.util.Map; /** * 用户 * * @author Mark sunlig...
package org.bian.dto; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonCreator; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import org.bian.dto.BQSessionInitiateInputModelCustomerContactOperatingSessionInstanceRecordCustomerCo...
package br.org.bueno.application.socket.client; import org.apache.mina.core.service.IoHandlerAdapter; import org.apache.mina.core.session.IoSession; public class ClientHandler extends IoHandlerAdapter { public void messageReceived(IoSession session, Object message) { String str = message.toString(); System.out...
/**************************************************************** * Licensed to the Apache Software Foundation (ASF) under one * * or more contributor license agreements. See the NOTICE file * * distributed with this work for additional information * * regarding copyright ownership. The ASF licenses this...
/* * Created by Steven Jennings (zzApotheosis) on 01 July 2016. */ package day25; import java.util.Scanner; public class Solution0 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int in = scan.nextInt(); int test; int counter; for (int ...
package com.seemsys.khateratapp; import android.annotation.SuppressLint; import android.app.Application; import com.facebook.react.ReactApplication; import com.github.yamill.orientation.OrientationPackage; import com.brentvatne.react.ReactVideoPackage; import org.reactnative.camera.RNCameraPackage; import com.faceboo...
package DurgaSoft.Array_Basic; public class Array_init { public static void main(String[] args) { int[] AD1 = new int[5]; int [][]AD2 = new int[2][3]; int AD3[][][] = new int[3][2][4]; System.out.println(AD1.length); // use for any no. System.out.println(); System.out.println(AD2.length); Syste...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ package org.elasticsearch.xpack.core.ilm; import org.apache.logging.log4j.Log...
package com.ui.automation.framework.android.uiautomator; import com.android.ddmlib.IDevice; import com.android.ddmlib.NullOutputReceiver; import com.android.ddmlib.RawImage; import com.android.ddmlib.SyncService; import com.library.common.IOHelper; import com.ui.automation.framework.android.DebugBridge; import com.ui....
package cn.jungmedia.android.bean; /*** * * @Copyright 2018 * * @TODO * * @author niufei * * * @date 2018/3/20. 上午12:09 * * */ public class Counter { private int pageSize; private int total; private int pageCount; private int pageIndex; public void setPageSize(int pageSize) { ...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
package com.xueyi.system.api.domain.organize; import javax.validation.constraints.NotBlank; import javax.validation.constraints.Size; import com.xueyi.common.core.annotation.Excels; import com.xueyi.system.api.domain.authority.SysRole; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons....
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
package si.matjazcerkvenik.test.javase.threads.pool; public class DummyConnection { private String connectionName; public DummyConnection(String connectionName) { this.connectionName = connectionName; } public void execute(String user, String cmd) { System.out.println("Execute: " + user + ":" + cmd); ...
package ustc.maomao.patterns.adapter; import ustc.maomao.patterns.support.PatternTester; /** * @author Keene. Mail: waterzhj@ustc.edu.cn * * 该代码遵循MIT License, 详细见 https://mit-license.org/ * * Copyright {2017} {Keene} * * designed by Keene, implemented by {Keene} * * 适配器模式测...
package annotator.find; import annotator.Main; import com.sun.source.tree.*; import com.sun.source.util.TreePath; import javax.lang.model.element.Modifier; /** Represents the criterion that a program element is in a method with a certain name. */ final class InMethodCriterion implements Criterion { public final St...
package whitelife.win.socketlibrary.message; import com.alibaba.fastjson.JSON; import whitelife.win.socketlibrary.SocketDataProtos; import whitelife.win.socketlibrary.callback.MessageType; /** * Created by wuzefeng on 2017/10/17. */ public class SocketVideoMessage extends SocketMessage{ public SocketVideoMe...
/* * Copyright 2012 Cyril A. Karpenko * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
/** * Copyright (c) 2016, 2021, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose eith...
/* * Copyright 1999-2011 Alibaba Group Holding Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applica...
/* * Copyright 2016-2019 Fraunhofer AISEC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or ...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
package com.zhangrui.huiju.fragment; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.design.widget.TabLayout; import android.support.v4.app.Fragment; import android.support.v4.view.ViewPager; import android.view.LayoutInflater; import android.view.View; import android.view....
/** */ package CIM.IEC61970.Informative.InfERPSupport; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.eclipse.emf.common.util.Enumerator; /** * <!-- begin-user-doc --> * A representation of the literals of the enumeration '<em><b>Erp Invoice Kind</b></em>', * and utility...
/** * ********************************************************************** * * <p>DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * <p>Copyright 2008, 2010 Oracle and/or its affiliates. All rights reserved. * * <p>Use is subject to license terms. * * <p>Licensed under the Apache License, Versi...
package sample; import javafx.fxml.FXML; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import javafx.scene.control.Button; import javafx.scene.layout.AnchorPane; import javafx.stage.Stage; import java.io.IOException; public class AdminPanelController { @FXML private Button btnAddBook; @FXML...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
package com.wiley.api.crud; /** * Base abstraction for updating item */ public interface Update<T> { void update(T item); }
package com.hellokoding.jpa.model; import javax.persistence.*; import java.util.Set; @Entity @Table public class Publisher { private int id; private String name; private Set<BookPublisher> bookPublishers; public Publisher(){ } public Publisher(String name){ this.name = name; } ...
/* * Copyright 2020 rannuo1010@gmail.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
package com.alipay.api.domain; import java.util.List; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; import com.alipay.api.internal.mapping.ApiListField; /** * 多端小程序-真机预览接口 * * @author auto create * @since 1.0, 2019-07-01 14:34:25 */ public class AlipayOpenMiniInnerversionP...
package org.jcodec.codecs.vpx.vp8.data; /** * This class is part of JCodec ( www.jcodec.org ) This software is distributed * under FreeBSD License. * * The class is a direct java port of libvpx's * (https://github.com/webmproject/libvpx) relevant VP8 code with significant * java oriented refactoring. * * @au...
package com.zjb.ruleengine.core.rule; import com.google.common.collect.Sets; import com.zjb.ruleengine.core.Collectors; import com.zjb.ruleengine.core.Context; import com.zjb.ruleengine.core.Execute; import com.zjb.ruleengine.core.condition.AbstractCondition; import com.zjb.ruleengine.core.config.PostProcessor; import...
/* * Copyright 2011-2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
package com.alibaba.fastjson.util; import java.lang.reflect.Method; import java.lang.reflect.Type; public class ASMUtils { public static final String JAVA_VM_NAME = System.getProperty("java.vm.name"); public static final boolean IS_ANDROID = isAndroid(JAVA_VM_NAME); public static boolean isAndroid...
/** * Copyright Pravega Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
package model; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.x...
package com.k1l3.wheredoesithurt.calendarDecorator; import android.graphics.Color; import android.graphics.Typeface; import android.text.style.ForegroundColorSpan; import android.text.style.RelativeSizeSpan; import android.text.style.StyleSpan; import com.prolificinteractive.materialcalendarview.CalendarDay; import c...
/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"...
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed ...
package jdk.nashorn.internal.runtime; import java.util.Arrays; import java.util.Collection; import java.util.Collections; import java.util.HashSet; import java.util.Iterator; import java.util.Map; import java.util.Set; import java.util.Map.Entry; public final class PropertyHashMap implements Map<String, Property> { ...
package com.rideaustin.ui.base; import com.rideaustin.base.BaseApiException; /** * Created by kshumelchyk on 7/17/16. */ public class NoTokenException extends Throwable { public NoTokenException() { super("No Token Available"); } }
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.xmlcml.cml.converters.spectrum.jdx.cml2jdx; import org.junit.Test; import org.xmlcml.cml.converters.spectrum.SpectrumCommon; import org.xmlcml.cml.converters.testutils.RegressionSuite; /** * * @author ojd...
/** * Copyright 2013 Canada Health Infoway, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicab...
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to Y...
// Copyright 2018 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
// -------------------------------------------------------------------------------- // Copyright 2002-2022 Echo Three, LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http:/...
package com.betfair.aping.betting.entities; import com.betfair.aping.betting.enums.ExecutionReportErrorCode; import com.betfair.aping.betting.enums.ExecutionReportStatus; import java.util.List; import javax.annotation.Generated; @Generated("pt.paulosantos.betfair.aping.codegen") public class ReplaceExecutionReport {...
/** * * Copyright 2016-2016 spccold * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed...
package mage.cards.s; import mage.MageInt; import mage.abilities.Ability; import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.costs.common.TapSourceCost; import mage.abilities.costs.mana.ManaCostsImpl; import mage.abilities.effects.common.combat.CantBeBlockedTargetEffect; import mage.abilities.e...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package com.baeldung.kotlin.collection.ops; import java.util.List; import java.util.stream.Collectors; import java.util.stream.IntStream; public class CollectionTransformations { public static List<String> transformList() { return IntStream.range(1, 100_000) .mapToObj(String::valueOf) ...
/** * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ package co...
/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package com.ruoyi.web.platform.noparty.service.impl; import java.util.Date; import java.util.List; import com.ruoyi.common.utils.DateUtils; import com.ruoyi.framework.util.ShiroUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.ruoyi.web.pla...
package org.python.antlr.ast; import org.python.antlr.PythonTree; import org.python.antlr.base.slice; import org.antlr.runtime.CommonToken; import org.antlr.runtime.Token; import java.io.DataOutputStream; import java.io.IOException; public class ErrorSlice extends slice { public ErrorSlice(PythonTree tree) { ...
package com.pingpongdebug.rest.controller; import com.pingpongdebug.rest.domain.InfoRequest; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RestController; /** * Suppose this is third party API -- o...
/* * secureCodeBox (SCB) * Copyright 2015-2021 iteratec GmbH * https://www.iteratec.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LIC...
// Copyright 2018 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.iot.deviceupdate.models; import com.azure.core.annotation.Fluent; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; ...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
/* * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
package com.nvlad.yii2support.migrations.ui.settings; import com.intellij.openapi.ui.ComboBox; import com.intellij.util.ui.AbstractTableCellEditor; import javax.swing.*; import java.awt.*; import java.awt.event.ItemEvent; import java.util.List; public class ComboBoxTableCellEditor extends AbstractTableCellEditor { ...
package com.vmware.avi.vro.model; import java.util.*; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude.Include; import com.vmware.o11n.plugin.sdk.a...
package mobi.openddr.examples.gwtcanvasdemo.module.client.ui; import com.github.apetrelli.gwtintegration.mvp.client.ui.HasBody; import com.google.gwt.core.client.GWT; import com.google.gwt.uibinder.client.UiBinder; import com.google.gwt.uibinder.client.UiField; import com.google.gwt.user.client.ui.AcceptsOneWidget; im...
/** * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE * file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file * to You under the Apache License, Version 2.0 (the "License"); you may not us...
package epicsquid.mysticallib.block; import java.util.List; import java.util.Random; import java.util.function.Supplier; import javax.annotation.Nonnull; import javax.annotation.Nullable; import epicsquid.mysticallib.LibRegistry; import epicsquid.mysticallib.model.IModeledObject; import epicsquid.mysticallib.model.b...
/* SPDX-License-Identifier: Apache-2.0 */ /* Copyright Contributors to the ODPi Egeria project. */ package org.odpi.openmetadata.adapters.repositoryservices.igc.clientlibrary.model.generated.v11501ru5; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.odpi.openmetadata.adapters.repositoryservice...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
/* * * Copyright 2015-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless req...
package chapter12; public class Bike extends Transport{ void ride() { System.out.print("따르릉 따르릉"); } }
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/cloud/vision/v1p3beta1/product_search_service.proto package com.google.cloud.vision.v1p3beta1; public interface ImportProductSetsResponseOrBuilder extends // @@protoc_insertion_point(interface_extends:google.cloud.vision.v1p3beta1.I...