text
stringlengths
7
995k
/** * Copyright (c) 2003-2010, Xith3D Project Group all rights reserved. * * Portions based on the Java3D interface, Copyright by Sun Microsystems. * Many thanks to the developers of Java3D and Sun Microsystems for their * innovation and design. * * Redistribution and use in source and binary forms, with or wi...
package cn.throwx.canal.gule.support.processor; import cn.throwx.canal.gule.common.BinLogEventType; import cn.throwx.canal.gule.common.OperationType; import cn.throwx.canal.gule.model.CanalBinLogEvent; import cn.throwx.canal.gule.model.CanalBinLogResult; import cn.throwx.canal.gule.model.ModelTable; import cn.throwx.c...
// This is a generated file. Not intended for manual editing. package org.intellij.plugins.tickscript.psi; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.psi.PsiElement; public interface TickScriptParameterList extends PsiElement { @NotNull List<TickScriptExpression> getParameters...
/* * @(#)Area.java 1.21 06/02/24 * * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package org.loon.framework.android.game.core.geom; import java.util.Vector; import java.util.Enumeration; import java.util.NoSuchElementException; /...
package p; public class TestInlineRename { int x = foo(new FooParameter(1, 2), 3); public static class FooParameter { public int xg; public int yg; public FooParameter(int xg, int yg) { this.xg = xg; this.yg = yg; } } public int foo(FooPara...
package rmqexample; import com.rabbitmq.client.Channel; import com.rabbitmq.client.DefaultConsumer; import com.rabbitmq.client.Envelope; import com.rabbitmq.client.AMQP.BasicProperties; public class ActualConsumer extends DefaultConsumer { private int msgCount; public ActualConsumer(Channel channel) { super(cha...
package com.open.capacity.uaa.server.service.impl; import javax.servlet.http.HttpServletRequest; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.dao.DataAccessException; import org.springframework.data.redis.connection.RedisConnect...
/* * Minecraft Forge * Copyright (c) 2016-2020. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation version 2.1 * of the License. * * This library is distributed in the hope that it...
package seedu.addressbook.commands; import seedu.addressbook.accountmanager.AccountManager; /** * Shows help instructions. */ public class HelpCommand extends Command { public static final String COMMAND_WORD = "help"; public static final String MESSAGE_USAGE = COMMAND_WORD + ":\n" +"Shows program usage in...
/* * 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.journaldev.mongodb.utils; public class Pair<A,B> { private A a; private B b; public Pair(A a,B b){ this.a = a; this.b = b; } public A getA() { return a; } public void setA(A a) { this.a = a; } public B getB() { return b; } public void setB(B b) { this.b = b; } @Override ...
/******************************************************************************* * 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...
/* * WorldEdit, a Minecraft world manipulation toolkit * Copyright (C) sk89q <http://www.sk89q.com> * Copyright (C) WorldEdit team and contributors * * This program 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 F...
/* * 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) 2008 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.puresoltechnologies.xo.titan.impl; import java.lang.annotation.Annotation; import com.buschmais.xo.spi.datastore.DatastoreEntityManager; import com.buschmais.xo.spi.datastore.DatastoreQuery; import com.buschmais.xo.spi.datastore.DatastoreRelationManager; import com.buschmais.xo.spi.datastore.DatastoreSess...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: protos/gentleRain.proto package edu.msu.cse.dkvf.metadata; public final class Metadata { private Metadata() {} public static void registerAllExtensions( com.google.protobuf.ExtensionRegistryLite registry) { } public static void regi...
/* * Copyright 2017-2020 original 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 applicable law or agr...
/* * 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 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package com.intellij.vcs.log.data; import com.intellij.openapi.Disposable; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.components.Serv...
package com.conf; import com.alibaba.druid.pool.DruidDataSource; import org.apache.shardingsphere.api.config.sharding.KeyGeneratorConfiguration; import org.apache.shardingsphere.api.config.sharding.ShardingRuleConfiguration; import org.apache.shardingsphere.api.config.sharding.TableRuleConfiguration; import org.apache...
/* * Copyright (c) Facebook, Inc. and its affiliates. * * 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 applic...
package com.nexus.mall.dao.backend; import com.nexus.mall.my.mapper.MyMapper; import com.nexus.mall.pojo.BackendAdminRoleRelation; import com.nexus.mall.pojo.BackendResource; import com.nexus.mall.pojo.BackendRole; import org.apache.ibatis.annotations.Param; import java.util.List; public interface BackendAdminRoleRe...
/* * 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 2016 Netflix, 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...
package Polymorphism.Exercise.P04Word; public interface CommandInterface { void init(); void handleInput(String input); }
package br.com.talpi.social; import java.io.Serializable; import java.time.Instant; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persiste...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.analytics.synapse.artifacts.models; import com.azure.core.annotation.Fluent; import com.fasterxml.jackson.annotation.JsonProperty; import com.fa...
/* * This software is licensed under the MIT License * https://github.com/GStefanowich/MC-Server-Protection * * Copyright (c) 2019 Gregory Stefanowich * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal ...
/************************************************************** * * 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 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.monitoring.rest.action; import org.elasticsea...
package M10Robot.cards; import M10Robot.M10RobotMod; import M10Robot.cardModifiers.AimedModifier; import M10Robot.cards.abstractCards.AbstractDynamicCard; import M10Robot.characters.M10Robot; import basemod.helpers.CardModifierManager; import com.megacrit.cardcrawl.actions.AbstractGameAction; import com.megacrit.cardc...
/** * Copyright &copy; 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved. */ package com.orhon.pa.common.security.shiro.cache; import java.util.Collection; import java.util.Collections; import java.util.Set; import javax.servlet.http.HttpServletRequest; import org.apache.shiro...
package com.alchemy.patient.patientweb.response; public class ImageResponseData { private boolean status; private String imageBase64; private String imagePath; public void setImagePath(String imagePath) { this.imagePath = imagePath; } public String getImagePath() { return imagePath; } public boolean ...
package com.eleks.tesla; import android.content.Context; import android.graphics.Bitmap; import android.util.Log; import android.widget.Toast; import com.eleks.tesla.api.ApiAdapter; import com.eleks.tesla.api.Config; import com.eleks.tesla.api.TeslaApi; import com.eleks.tesla.api.auth.AuthCredentials; import com.elek...
package app.coronawarn.server.services.distribution.assembly.component; import static org.assertj.core.api.Assertions.assertThat; import static org.junit.jupiter.api.Assertions.assertEquals; import app.coronawarn.server.common.shared.collection.ImmutableStack; import app.coronawarn.server.services.distribution.assem...
package co.lq.repository; import org.springframework.data.jpa.repository.JpaRepository; import co.lq.domain.AlipayConfig; /** * @author billy * @date 2018-12-31 */ public interface AlipayRepository extends JpaRepository<AlipayConfig, Long> { }
/* * @(#) ComparablePair.java * * javautil Java Utility Library * Copyright (c) 2013, 2014 Peter Wall * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including ...
package pl.tomaszdziurko.jvm_bloggers.blogs.domain; import lombok.Data; import lombok.NoArgsConstructor; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.SequenceGen...
package org.jcvi.ometa.engine; import org.jcvi.ometa.helper.SequenceHelper; import org.junit.Test; import java.io.File; /** * User: movence * Date: 11/25/14 * Time: 10:12 PM * org.jcvi.ometa.engine */ public class BulkLoaderTest { BulkLoader loader = new BulkLoader(); @Test public void main() throw...
package com.zw.platform.service.sendTxt.impl; import com.zw.platform.basic.constant.RedisKeyEnum; import com.zw.platform.basic.core.RedisHelper; import com.zw.platform.basic.core.RedisKey; import com.zw.platform.domain.systems.Directive; import com.zw.platform.push.handler.device.DeviceHelper; import com.zw.platform.r...
/******************************************************************************* * Copyright 2018 HungPV * 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/licen...
/* * Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) 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 * * ...
/* * Copyright 1999-2011 Alibaba 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 applicable la...
package org.kairosdb.core.datastore; import com.google.common.collect.TreeMultimap; import java.util.Set; /** * Created with IntelliJ IDEA. * User: bhawkins * Date: 8/28/13 * Time: 12:38 PM * To change this template use File | Settings | File Templates. */ public class TagSetImpl implements TagSet { privat...
/* * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2019-Present Datadog, Inc. * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-gen...
package TextExtractor; import java.util.regex.Matcher; import java.util.regex.Pattern; //This class is made specifically to get matching strings from shopgoodwill.com pages. public class TextDigger { static Pattern itemNumPattern; static Pattern pageNumPattern; static Pattern currentPageNumInURLPattern; ...
/* * 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 n...
/* * 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.talkortell.bbs.ups.api.dto.req; import java.util.List; import com.talkortell.bbs.base.common.req.BasePaginationRequest; import lombok.Getter; import lombok.Setter; @Getter @Setter public class QueryUserFullInfoListRequest extends BasePaginationRequest { private static final long serialVersionUID = -55...
package controllers; import SDMImprovedFacade.Store; import SDMImprovedFacade.StoreItem; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.fxml.FXML; import javafx.scene.control.Alert; import javafx.scene.control.Button; import javafx.scene.control.ComboBox; import javafx...
package de.yard.threed.engine.gui; import de.yard.threed.engine.*; import de.yard.threed.engine.geometry.Primitives; import de.yard.threed.core.DimensionF; import de.yard.threed.engine.platform.common.SimpleGeometry; public class ControlPanelArea extends SceneNode { DimensionF size; ButtonDelegate buttonDeleg...
/* * Copyright 2014-2019 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...
/* * Copyright 2016-2021 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...
/* Copyright (c) 2008 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...
// "Replace with collect" "true" import java.util.*; public class Collect { class Person { String getName() { return ""; } } void collectNames(List<Person> persons, Set<String> names){ for (Person person : pers<caret>ons) { names.add(person.getName()); } } }
package svenhjol.meson.decorator; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.block.state.IBlockState; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.EnumFacing; import net.minecraft.util.Mirror; import net.minecraft.util.Rotation; import ...
/*----------------------------------------------------------------------------*/ /* Copyright (c) 2018 FIRST. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of...
/* * Copyright 2015-2016 USEF Foundation * * 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 agree...
public class AmbiguousSyntaxDemo { public static void main(String[] args) { int i = 2; int a = 3; int b = a + +(+i); int c = a + ++i; int d = a + ++i; System.out.printf("a=%d b=%d c=%d d=%d i=%d%n", a, b, c, d, i); } }
package com.jungle; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; /** * Spring boot 程序主入口。 */ @SpringBootApplication @EnableEurekaClient public class EurekaProviderApplicatio...
package com.mldong.modules.sys.service.impl; import com.github.pagehelper.Page; import com.mldong.common.base.CommonPage; import com.mldong.common.base.WhereParam; import com.mldong.common.base.YesNoEnum; import com.mldong.common.tk.ConditionUtil; import com.mldong.modules.sys.dto.SysNoticePageParam; import com.mldong...
/* * 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 ...
/*Charles Letonnellier de Breteuil * 27296592 * COMP 352 * assignment 3 * */ import java.io.File; import java.util.Scanner; public class atree extends BinaryTree { static int comparisons; static int parentchange; atree() { this.root = null; } private class AVLNode extends BinaryTree.Node { int height; ...
package org.janusgraph.usage.api; /** * Created by zhangkai12 on 2018/1/6. */ public interface GraphInterface { public void initHbaseGraph(); }
/* * Copyright 2018 JDCLOUD.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 agreed to in...
/* * 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 use...
/* * Copyright 2015 The gRPC 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 agree...
/* * Copyright 2019 Red Hat, Inc. and/or its affiliates. * * 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 a...
/* * Hydrogen Proton API * Financial engineering module of Hydrogen Atom * * OpenAPI spec version: 1.7.18 * Contact: info@hydrogenplatform.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */...
package io.daos.obj; import io.daos.*; import io.netty.buffer.ByteBuf; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import java.io.IOException; import java.util.*; import java.util.concurrent.atomic.AtomicInteger; public class DaosObjectIT { private st...
package de.argh.aoc.day08; class AccCommand implements Command { private final long value; private int visited = 0; AccCommand(long value) { this.value = value; } @Override public int execute(int index) { visited++; if (!isSecondVisited()) { Programm.accum...
/* * CPAchecker is a tool for configurable software verification. * This file is part of CPAchecker. * * Copyright (C) 2007-2015 Dirk Beyer * 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 ...
package hirelah.model.hirelah; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.TreeMap; import hirelah.commons.exceptions.IllegalValueException; import hirelah.model.hirelah.exceptions.IllegalActionException; import javafx.beans.Observable; import javafx.collections.FXCollecti...
/* * 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 ...
package com.airbnb.lottie; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; class AnimatableScaleValue extends BaseAnimatableValue<ScaleXY, ScaleXY> { AnimatableScaleValue(LottieComposition composition) { super(composition); initialValue = new ScaleXY(); } Animatabl...
package com.yahoo.labs.samoa.core; /* * #%L * SAMOA * %% * Copyright (C) 2013 Yahoo! 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/license...
package com.bitdubai.fermat_cbp_plugin.layer.network_service.transaction_transmission.developer.bitdubai.version_1.event_handlers; import com.bitdubai.fermat_p2p_api.layer.all_definition.common.network_services.abstract_classes.AbstractNetworkService; import com.bitdubai.fermat_p2p_api.layer.all_definition.common.netw...
/* * Copyright (c) [2020] Huawei Technologies Co.,Ltd.All rights reserved. * * OpenArkCompiler is licensed under Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * * http://license.coscl.org.cn/MulanPSL2 * * THI...
/* * Copyright 2016 HuntBugs contributors * * 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 ...
package org.protege.editor.core.ui.util; import org.protege.editor.core.ProtegeManager; import org.protege.editor.core.editorkit.EditorKit; import org.protege.editor.core.editorkit.EditorKitManager; import org.protege.editor.core.platform.OSUtils; import org.protege.editor.core.platform.apple.MacUIUtil; import org.pro...
package com.google.appinventor.components.runtime; import android.hardware.Sensor; import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.SensorManager; import com.google.appinventor.components.annotations.DesignerComponent; import com.google.appinventor.components.an...
/******************************************************************************* * Copyright (c) 2010 Haifeng Li * * 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...
/* * Copyright 2018-present Red Brick Lane Marketing Solutions Pvt. 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...
/** * Copyright (C) 2018-2022 * All rights reserved, Designed By www.yixiang.co * 注意: * 本软件为www.yixiang.co开发研制 */ package co.yixiang.modules.system.service.impl; import co.yixiang.common.service.impl.BaseServiceImpl; import co.yixiang.common.utils.QueryHelpPlus; import co.yixiang.dozer.service.IGenerator; import ...
/* * Copyright (c) 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 app...
package com.globalroam.messageplus.modle.net.protocol; import java.io.IOException; import java.io.StringWriter; import java.util.ArrayList; import java.util.List; import org.apache.commons.lang3.StringUtils; import org.xmlpull.v1.XmlSerializer; import com.globalroam.messageplus.constants.ConstantValue; import com.gl...
package org.kyojo.schemaorg.m3n4.core.impl; import java.util.ArrayList; import java.util.List; import org.kyojo.schemaorg.SimpleJsonBuilder; import org.kyojo.schemaorg.m3n4.core.Clazz.MonetaryAmount; import org.kyojo.schemaorg.m3n4.core.Container; import org.kyojo.schemaorg.m3n4.core.DataType.Text; public class ESTI...
/* * Copyright (C) 2011 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...
/* * Copyright 1999-2011 Alibaba 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 applicable la...
/* * JBoss, Home of Professional Open Source * Copyright 2015, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this fi...
package request; public interface RequestObservable { void register(RequestObserver o); void unregister(RequestObserver o); void notifyObservers(); }
package view; import javax.swing.BorderFactory; import javax.swing.ButtonGroup; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JDialog; import javax.swing.JFrame; import javax.swing.JInternalFrame; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import...
package eu.icred.ui.gui; import java.awt.Dimension; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Map; imp...
package io.github.xxyy.quietcord.filter; import net.md_5.bungee.config.Configuration; import io.github.xxyy.quietcord.QuietCordPlugin; import java.util.logging.LogRecord; import java.util.logging.Logger; /** * A simple log filter that cancels messages stating that a client has connected to InitialHandler. These me...
package com.u8.sdk; import com.u8.sdk.utils.Arrays; import android.app.Activity; public class YYHUser extends U8UserAdapter { private String[] supportedMethods = {"login", "logout", "switchLogin","showAccountCenter","submitExtraData"}; public YYHUser(Activity context) { YYHSDK.getInstance().initSDK...
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
public class forLoops { public static void main(String[] args) { System.out.println("DOES THIS WORK?"); for(int i=0; i<4; i++){ System.out.println("This will repeat 4 times ... hopefully!"); if(i==2){ System.out.println("Here is something in-between!!!"); } } for(int...
package com.vietnam.corona.repo; import androidx.lifecycle.MutableLiveData; import com.vietnam.corona.api.specData.SpecData; import com.vietnam.corona.api.specData.SpecDataFetch; import com.vietnam.corona.api.specData.SpecDataHolder; import retrofit2.Call; import retrofit2.Callback; import retrofit2.Response; import...
/** * Copyright © 2016-2018 The Thingsboard Authors * Modifications © 2017-2018 Hashmap, 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/LIC...