text
stringlengths
7
995k
package hu.bme.mit.spaceship; /** * A simple spaceship with two proton torpedo stores and four lasers */ public class GT4500 implements SpaceShip { private TorpedoStore primaryTorpedoStore; private TorpedoStore secondaryTorpedoStore; private boolean wasPrimaryFiredLast = false; public GT4500(TorpedoStore pr...
package com.len.controller; import com.alibaba.fastjson.JSONArray; import com.github.pagehelper.Page; import com.github.pagehelper.PageHelper; import com.len.base.BaseController; import com.len.core.annotation.Log; import com.len.core.annotation.Log.LOG_TYPE; import com.len.core.shiro.Principal; import com.len.entity....
/* * 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 2020 OmniSci, 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 ...
// // Copyright (c) Microsoft Corporation. All rights reserved. // package com.microsoft.rome.onesdksample_android; import android.app.Application; import android.content.Context; public class StaticContextApp extends Application { private static Context mContext; @Override public void onCreate() { ...
package edu.kit.stc.lexer; import edu.kit.stc.lexer.exception.EndOfFileException; import edu.kit.stc.lexer.exception.LException; import java.util.ArrayList; import java.util.LinkedList; import java.util.Queue; import java.util.concurrent.LinkedBlockingQueue; import edu.kit.stc.vocabulary.terminal.*; public class Le...
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2013 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CD...
/* * OpenAPI Petstore * This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\ * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-gener...
package mage.cards.m; import mage.abilities.Ability; import mage.abilities.SpellAbility; import mage.abilities.common.BeginningOfDrawTriggeredAbility; import mage.abilities.common.EntersBattlefieldAbility; import mage.abilities.common.SimpleStaticAbility; import mage.abilities.condition.common.ModeChoiceSourceConditio...
/* * The MIT License (MIT) * * Copyright (c) 2014 daimajia * * 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 without limitation the rights * to use, cop...
/** * JBoss, Home of Professional Open Source. * Copyright 2014-2019 Red Hat, Inc., and individual contributors * as indicated by the @author tags. * * 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...
/* This Java source file was generated by test-to-java.xsl and is a derived work from the source document. The source document contained the following notice: Copyright (c) 2001-2004 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, ...
package java.android.quanlybanhang.CongAdapter; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.recyclerview.widget.RecyclerView; import com.ramotion.fold...
/** * */ package Algorithm; /** * @author LvHongbin * */ public class GreatestCommonDivisor extends MainTool{ public static void main(String[] args) { MainTool m = new GreatestCommonDivisor(2); m.execute(); } public GreatestCommonDivisor(int num) { super(num); // TODO Auto-generated constructor st...
/***************************************************************** * 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 * ...
package com.priyank.passport_inc; import android.annotation.SuppressLint; import android.content.Intent; import android.graphics.Bitmap; import android.graphics.Color; import android.os.Build; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; ...
package com.epam.deltix.data.connectors.commons; import com.epam.deltix.timebase.messages.InstrumentMessage; import com.epam.deltix.util.collections.CharSequenceToObjectMap; import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.stream.Collectors; /** * <p>This class is threa...
/* * Copyright 2010 Alibaba Group Holding Limited. * 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 * * Unles...
package com.delllogistics.config; import com.delllogistics.config.properties.FtpProperties; import com.delllogistics.config.properties.QiniuUplodProperties; import com.delllogistics.storage.StorageInterface; import com.delllogistics.storage.impl.FTPStorageImpl; import com.delllogistics.storage.impl.QiniuStorageImpl; i...
package com.lzhlyle.leetcode.self.no441; public class ArrangingCoins { public int arrangeCoins(int n) { long l = 0, r = n; while (l < r) { long mid = l + (r - l + 1) / 2; if (sum(mid) > n) r = mid - 1; else l = mid; } return (int) l; } pr...
/* * Copyright 2021. Explore in HMS. 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 applic...
package pinacolada.resources.pcl.misc; import com.megacrit.cardcrawl.cards.AbstractCard; import com.megacrit.cardcrawl.cards.CardGroup; import com.megacrit.cardcrawl.helpers.CardLibrary; import eatyourbeets.utilities.JUtils; import eatyourbeets.utilities.WeightedList; import pinacolada.cards.base.*; import pinacolada....
package net.kwmt27.codesearch.entity.events; import android.content.Context; import android.view.View; import android.widget.TextView; import com.google.android.flexbox.FlexboxLayout; import com.google.gson.annotations.SerializedName; import net.kwmt27.codesearch.entity.EventEntity; import net.kwmt27.codesearch.enti...
package org.knowm.xchange.ccex.service; import java.io.IOException; import java.math.BigDecimal; import java.util.List; import org.knowm.xchange.Exchange; import org.knowm.xchange.ccex.CCEXAdapters; import org.knowm.xchange.currency.Currency; import org.knowm.xchange.dto.account.AccountInfo; import org.knowm.xchange....
package com.onrpiv.uploadmedia.Learn; import android.os.Build; import android.os.Bundle; import android.text.Html; import android.text.Layout; import android.widget.TextView; import androidx.annotation.RequiresApi; import androidx.core.widget.NestedScrollView; import com.google.android.material.bottomnavigation.Bott...
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mediafuncao; import java.util.Scanner; /** * * @author T-Gamer */ public class MediaFuncao { /** * @param args t...
/* SPDX-License-Identifier: Apache-2.0 */ /* Copyright Contributors to the ODPi Egeria project. */ package org.odpi.openmetadata.accessservices.analyticsmodeling.synchronization; import org.odpi.openmetadata.commonservices.generichandlers.OpenMetadataAPIMapper; /** * The class keeps identifiers used by synchronizat...
/* * Copyright 2019 Patrik Karlström. * * 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 2016 Craig Miller * * 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 com.po.sample.asgn14hanoi; import android.content.Context; import android.support.v4.content.ContextCompat; import android.util.AttributeSet; import android.view.Gravity; import android.view.ViewGroup; import android.widget.TextView; import android.support.v7.widget.AppCompatTextView; public class DiskView e...
/* * Copyright (c) 2017, Adam <Adam@sigterm.info> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * li...
/* Copyright 2018 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 agreed to in writing, software ...
/** * 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 2020 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 ...
/* * Copyright (c) 2020 ProDev+ (Pascal Gerner). * * 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 ...
/* * 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")...
package org.apereo.cas.config; import org.apereo.cas.CipherExecutor; import org.apereo.cas.configuration.CasConfigurationProperties; import org.apereo.cas.mongo.MongoDbConnectionFactory; import org.apereo.cas.support.saml.idp.metadata.MongoDbSamlIdPMetadataCipherExecutor; import org.apereo.cas.support.saml.idp.metadat...
/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc. and/or its affiliates, 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"); * y...
package p000; import java.math.BigDecimal; import kotlin.Metadata; import kotlin.jvm.functions.Function1; import kotlin.jvm.internal.Intrinsics; import kotlin.jvm.internal.Lambda; import org.jetbrains.annotations.NotNull; final class SenzaLimitiKt$main$x$2 extends Lambda implements Function1<BigDecimal, BigDecimal> {...
/* * 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")...
package com.ngdesk.annotations; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import javax.validation.Constraint; import javax.validation.Payload; @Documented @Co...
/* Derby - Class SimpleApp Copyright 2001, 2004 The Apache Software Foundation or its licensors, as applicable. 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.apa...
package com.smatechnologies.opcon.commons.opcon.event; import com.smatechnologies.opcon.commons.opcon.event.parameter.IOpconEventParameter; import com.smatechnologies.opcon.commons.opcon.event.parameter.OpconEventParameterException; import com.smatechnologies.opcon.commons.opcon.event.template.OpconEventParameterTempl...
/* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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 2016 NAVER Corp. * * 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 ...
/* * $Id:$ * $URL:$ * * ==================================================================== * Ikasan Enterprise Integration Platform * * Distributed under the Modified BSD License. * Copyright notice: The copyright for this software and a full listing * of individual contributors are as shown in the packaged ...
package com.tgithubc.kumao.message.util; import android.support.annotation.NonNull; import com.tgithubc.kumao.message.IObserver; import com.tgithubc.kumao.message.message.Decorate; import com.tgithubc.kumao.message.message.Message; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.List; ...
/* * Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
/* * 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 net.reinderp.cyti.init; import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; import net.minecraft.block.Material; import net.minecraft.sound.BlockSoundGroup; import net.minecraft.util.registry.Registry; import net.reinderp.cyti.common.blocks.EnergyTrashcanBlock; import net.reinderp.cyti....
package com.github.whitepin.frontend; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import javax.annotation.PostConstruct; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.SpringApplication; import org.springframework.boot.au...
package org.dromara.hmily.core.disruptor.handler; import org.dromara.hmily.core.concurrent.ConsistentHashSelector; import org.dromara.hmily.core.disruptor.AbstractDisruptorConsumerExecutor; import org.dromara.hmily.core.disruptor.DisruptorConsumerFactory; import org.dromara.hmily.core.repository.HmilyRepositoryDispatc...
package org.hibernate.performance.search.elasticsearch; import org.hibernate.performance.search.tck.AutomaticIndexingPerformanceTest; import org.openjdk.jmh.annotations.Level; import org.openjdk.jmh.annotations.Scope; import org.openjdk.jmh.annotations.Setup; import org.openjdk.jmh.annotations.State; import org.openj...
/* * 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 firstUniqueCharacterInAString; import FirstUniqueCharacterInAString.*; import org.junit.Assert; import org.junit.Test; public class SolutionTest { @Test public void test1() { Solution s = new Solution(); Assert.assertEquals(0, s.firstUniqChar("leetcode")); } @Test public...
package net.powermatcher.test.helpers; import java.util.Arrays; import java.util.HashSet; import java.util.Set; import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue; import java.util.concurrent.TimeUnit; import org.osgi.service.component.annotations.Component; import org.osgi.ser...
package com.thewizrd.shared_resources.weatherdata.ambee; import com.google.gson.annotations.SerializedName; import com.vimeo.stag.UseStag; @UseStag(UseStag.FieldOption.ALL) public class DataItem { @SerializedName("Risk") private Risk risk; @SerializedName("Count") private Count count; @Serializ...
package com.deep3.medusLabs.controller; import com.deep3.medusLabs.aws.exceptions.ObjectNotFoundException; import com.deep3.medusLabs.model.APIResponse; import com.deep3.medusLabs.model.Lab; import com.deep3.medusLabs.service.DeployedLabLogService; import com.deep3.medusLabs.service.DeployedLabService; import com.deep...
package net.ethx.shuteye.http.request; import net.ethx.shuteye.http.ContentType; import net.ethx.shuteye.util.Encodings; import net.ethx.shuteye.util.Streams; import java.io.*; class StreamMultipartField implements MultipartField { private final String name; private final String fileName; private final C...
/* * Copyright (C) 2012-2021 DuyHai DOAN * * 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...
package cz.none.bomberman.go; import javafx.animation.ScaleTransition; import javafx.animation.ScaleTransitionBuilder; import javafx.scene.Scene; import javafx.scene.paint.Color; import javafx.scene.shape.Circle; import javafx.scene.shape.CircleBuilder; import javafx.util.Duration; import cz.none.bomberman.GameEngine;...
package com.hb.design.principle.dependenceinversion; /** * @Author:HB * @Description: * @Createdata:Created in 16:12 2020/1/6. */ public class JavaCouse implements ICourse { @Override public void studyCourse() { System.out.println("学习Java课程中..."); } }
/* * DBeaver - Universal Database Manager * Copyright (C) 2010-2022 DBeaver Corp and others * * 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/LICE...
/* * 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-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...
/******************************************************************************* * Copyright (c) 2015-2018 Skymind, Inc. * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at * https://www.apache.org/licenses/LICENSE-2.0. * *...
/** * Copyright (C) 2015 The Gravitee team (http://gravitee.io) * * 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 requ...
package sample.config; import org.springframework.beans.BeansException; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationContextAware; import org.springframework.context.annotation.Bean; import org.spring...
package com.xinf.dao; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.xinf.entity.UserFocus; /** * (UserFocus)表数据库访问层 * * @author makejava * @since 2021-08-31 19:25:18 */ public interface UserFocusDao extends BaseMapper<UserFocus> { }
/*----------------------------------------------------------------------------- - This is a part of AndroidVideoLib. - - To see the authors, look at Github for contributors of this file. - - - ...
package com.github.maheshyaddanapudi.redhat.ansibledocsboot.constants; public class Constants { // General Constants public static final String NONE = "NONE"; public static final String FALSE = "false"; public static final String TRUE= "true"; public static final String TEST = "test"; public s...
/* * Modifications copyright 2021 The caver-java Authors * Copyright 2019 Web3 Labs 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...
package com.project.convertedCode.includes.app; import com.runtimeconverter.runtime.RuntimeStack; import com.runtimeconverter.runtime.interfaces.ContextConstants; import com.runtimeconverter.runtime.includes.RuntimeIncludable; import com.runtimeconverter.runtime.includes.IncludeEventException; import com.runtimeconver...
/** * Copyright (c) 2016-2018 Zerocracy * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to read * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, * merge, publish, distribute, sublic...
package com.froobworld.nabsuite.modules.protect.command; import com.froobworld.nabsuite.command.NabParentCommand; import com.froobworld.nabsuite.modules.protect.ProtectModule; import org.bukkit.command.CommandSender; import java.util.List; public class AreaCommand extends NabParentCommand { public AreaCommand(P...
/* * This file was automatically generated by EvoSuite * Thu Aug 22 09:55:00 GMT 2019 */ package org.restheart.handlers.aggregation; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.shaded.org.mockito.Mockito.*; import static org.evosuite.runtime.EvoAssertions.*; import org.bson....
/* * Copyright 2017-2018 Adobe. * * 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 ...
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, 2020-07-28 17:13:17 */ public class AlipaySocialBaseChatGinvSend...
/* * Copyright 2020 Vonage * * 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 ag...
package com.example.groupid.samplebukkitplugin; import org.bukkit.command.Command; import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandSender; import com.google.common.base.Joiner; /* * This is a sample CommandExectuor */ public class SampleBukkitPluginCommandExecutor implements CommandExec...
package theHexaghost.ghostflames; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.Texture; import com.megacrit.cardcrawl.actions.AbstractGameAction; import com.megacrit.cardcrawl.actions.animations.VFXAction; import com.megacrit.cardcrawl.actions.common.DamageAction; import com.megacrit.cardcr...
/* * This file is part of the OpenKinect Project. http://www.openkinect.org * * Copyright (c) 2010 individual OpenKinect contributors. See the CONTRIB file * for details. * * This code is licensed to you under the terms of the Apache License, version * 2.0, or, at your option, the terms of the GNU General Public...
/* * (C) Copyright 2020 Nuxeo (http://nuxeo.com/) and others. * * 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 b...
/** * * Copyright (c) 2006-2019, Speedment, 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 requ...
package org.apache.fulcrum.osworkflow; /* * 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 Lice...
/** * Copyright &copy; 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved. */ package com.huojuit.hishop.modules.oa.dao; import com.huojuit.hishop.common.persistence.CrudDao; import com.huojuit.hishop.common.persistence.annotation.MyBatisDao; import com.huojuit.hishop.modules.oa....
/******************************************************************************* * Copyright 2020 SAP * * 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/lic...
/* * Copyright (c) Huawei Technologies Co., Ltd. 2020-2020. All rights reserved. */ package com.huawei.fusioninsight.elasticsearch.example.cluster; import com.huawei.fusioninsight.elasticsearch.example.util.CommonUtil; import com.huawei.fusioninsight.elasticsearch.transport.client.PreBuiltHWTransportClient; import...
/* * Licensed to the University Corporation for Advanced Internet Development, * Inc. (UCAID) under one or more contributor license agreements. See the * NOTICE file distributed with this work for additional information regarding * copyright ownership. The UCAID licenses this file to You under the Apache * Lic...
package com.andedit.arcubit; import static com.andedit.arcubit.Main.main; import com.andedit.arcubit.ui.actors.Background; import com.andedit.arcubit.utils.Util; import com.andedit.arcubit.world.loader.WorldHandleBase; import com.andedit.arcubit.world.loader.WorldHandleBase.HandleType; import com.andedit.arcubit.worl...
package com.example.demo.model; import com.example.demo.constant.HttpStatus; import java.util.HashMap; public class AjaxResult extends HashMap<String, Object> { private static final long serialVersionUID = 1L; /** * 状态码 */ public static final String CODE_TAG = "code"; /** * 返回内容 ...
/* * Copyright 2022 Meroxa, 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 in ...
package tpiskorski.machinator.lifecycle.state.manager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import tpiskorski.machinator.lifecycle.state.serialize.model.SerializableWatchdog; import tpisk...
/* * Copyright 2003 - 2014 The eFaps Team * * 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 ...
package objects; /** * Diese Klasse dient als Objekt zum speichern eines Musikstücks. * * @author robinkopitz * */ public class MusicPiece { private String title = null; private String artist = null; private String genre = null; public MusicPiece(String title, String artist, String genre) { this.title =...
package com.bugsnag.android.mazerunner.scenarios; import android.content.Context; import com.bugsnag.android.Configuration; import androidx.annotation.NonNull; public class CXXImproperTypecastScenario extends Scenario { static { System.loadLibrary("bugsnag-ndk"); System.loadLibrary("monochrome...
// Copyright (C) 2020 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 applicable ...
package md5b60ffeb829f638581ab2bb9b1a7f4f3f; public class PageContainer extends android.view.ViewGroup implements mono.android.IGCUserPeer { static final String __md_methods; static { __md_methods = "n_onMeasure:(II)V:GetOnMeasure_IIHandler\n" + "n_onLayout:(ZIIII)V:GetOnLayout_ZIIIIHandler\n" + "";...
package com.box.androidsdk.content.models; import java.util.ArrayList; /** * Session created from a shared link. */ public class BoxSharedLinkSession extends BoxSession { String mSharedLink; String mPassword; protected ArrayList<OnSharedLinkResponseListener> mListeners = new ArrayList<OnSharedLinkResp...
package org.pm4knime.portobject; import javax.swing.JComponent; import org.knime.core.node.InvalidSettingsException; import org.knime.core.node.ModelContentRO; import org.knime.core.node.ModelContentWO; import org.knime.core.node.port.AbstractSimplePortObjectSpec; public class DFMPortObjectSpec extends AbstractSimpl...