text
stringlengths
7
995k
/* * Copyright 2012 JBoss 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 ...
////////////////////////////////////////////////////////// // GENERATED BY FLUTTIFY. DO NOT EDIT IT. ////////////////////////////////////////////////////////// package me.yohom.bmap_map_fluttify.sub_handler.custom; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Line...
package io.quarkus.it.jackson; import io.quarkus.test.junit.QuarkusIntegrationTest; @QuarkusIntegrationTest public class ModelWithBuilderResourceIT extends ModelWithBuilderResourceTest { // Execute the same tests but in native mode. }
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */ package com.microsoft.azurebatch.jenkins.resource; import com.microsoft.azurebatch.jenkins.utils.ZipHelper; import com.microsoft.azurebatch.jenkins.az...
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2013 Oracle and/or its affiliates. All rights reserved. * * Oracle and Java are registered trademarks of Oracle and/or its affiliates. * Other names may be trademarks of their respective owners. * * The contents of this file are subject...
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */ package com.microsoft.azure.tools.auth.core.vscode; import com.azure.identity.CredentialUnavailableException; import com.azure.identity.implementation...
/* * Copyright 2020 Telefonaktiebolaget LM Ericsson * * 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 ...
// Generated automatically from android.database.ContentObserver for testing purposes package android.database; import android.net.Uri; import android.os.Handler; import java.util.Collection; abstract public class ContentObserver { protected ContentObserver() {} public ContentObserver(Handler p0){} publi...
/** * Copyright (c) 2013-2022 Contributors to the Eclipse Foundation * * See the NOTICE file distributed with this work for additional information regarding copyright * ownership. All rights reserved. This program and the accompanying materials are made available * under the terms of the Apache License, Version 2....
/* * Copyright (C) 2004 - 2014 Brian McCallister * * 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) 2006-2016 Talend Inc. - www.talend.com // // This source code is available under agreement available at // %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt // // You should have receiv...
package com.bkc.customerService.service; import java.util.List; import com.bkc.customerService.vo.FaqVO; public interface FaqService { public List<FaqVO> FaqList(FaqVO faqVO); public int FaqTotalCnt(FaqVO faqVO); public List<FaqVO> AdminFaqList(FaqVO faqVO); public int FaqInsert(FaqVO faqVO); public i...
package com.andre.example.exception; /** * For HTTP 400 errros */ public class BadRequestException extends RuntimeException { public BadRequestException(String message) { super(message); } }
package org.kyantra.dao; import com.amazonaws.services.cloudwatchevents.AmazonCloudWatchEvents; import com.amazonaws.services.cloudwatchevents.model.DeleteRuleRequest; import com.amazonaws.services.cloudwatchevents.model.PutRuleRequest; import com.amazonaws.services.cloudwatchevents.model.PutRuleResult; import com.ama...
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Mon Nov 01 11:34:44 GMT 2021 */ package fitnesse.testsystems.slim.tables; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org....
package io.github.muhittinpalamutcu.schoolmanagementsystem.entity; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonManagedReference; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import org.hibernate.annotat...
/* * Copyright 2002-2013 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 required by ap...
/* * 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 ...
/** * Dianping.com Inc. * Copyright (c) 2003-2013 All Rights Reserved. */ package com.dianping.pigeon.remoting.provider.config.spring; import org.apache.commons.lang.builder.ReflectionToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; import org.apache.logging.log4j.Logger; import com.dianping....
/* * 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) 2017 Jeff Gilfelt. * * 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...
package kr.dogfoot.hwplib.object.bodytext.paragraph.lineseg; import kr.dogfoot.hwplib.util.binary.BitFlag; /** * 각 중의 align 정보의 태그 정보에 대한 객체 * * @author neolord */ public class LineSegItemTag { /** * 파일에 저장되는 값 (unsigned 4 byte) */ private long value; /** * 생성자 */ public LineS...
/** * Copyright (c) Facebook, Inc. and its affiliates. * * <p>This source code is licensed under the MIT license found in the LICENSE file in the root * directory of this source tree. */ package com.example.reactnativeactionsshortcuts; import android.content.Context; import com.facebook.flipper.android.AndroidFli...
package cubyz.world.items; /** * A stack of items, used for storage in inventories. */ public class ItemStack { private Item item; private int amount = 0; public ItemStack() { item = null; } public ItemStack(Item item) { this.item = item; } public ItemStack(Item item, int amount) { assert(amount...
package witty.studyapp.resolver; import org.springframework.core.MethodParameter; import org.springframework.web.bind.support.WebDataBinderFactory; import org.springframework.web.context.request.NativeWebRequest; import org.springframework.web.method.support.HandlerMethodArgumentResolver; import org.springframework.we...
/* * The MIT License (MIT) * * Copyright (c) 2020 Alexandre DuBreuil * * 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 * t...
/* * Copyright 2002-2016 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.github.loadingdialog.demo; import android.os.Bundle; import android.view.View; import android.widget.Button; import com.github.loadingdialog.LoadingDialog; import androidx.appcompat.app.AppCompatActivity; public class MainActivity extends AppCompatActivity { private LoadingDialog loadingDialog; ...
/** * Copyright (c) 2020 QingLang, Inc. <baisui@qlangtech.com> * <p> * This program is free software: you can use, redistribute, and/or modify * it under the terms of the GNU Affero General Public License, version 3 * or later ("AGPL"), as published by the Free Software Foundation. * <p> * This program is distri...
package frc.robot.auto; import frc.robot.Constants; import frc.robot.subsystems.IntakeSubsystem; public class ShootStep implements IStep { private final IntakeSubsystem intakeSubsystem; private int frameCounter; public ShootStep(IntakeSubsystem intakeSubsystem) { this.intakeSubsystem = intakeSubsystem; } @O...
/* * 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...
class Main{ static int getMissingNo(int a[], int n) { int n_elements_sum = n * (n + 1) / 2; int sum = 0; for(int i = 0; i < n - 1; i++) sum += a[i]; return n_elements_sum - sum; } public static void main(String[] args) { int a[] = { 1, 2, 4, 5, 6 }; int n = a.l...
package org.treblereel.gwt.three4g.core; import jsinterop.annotations.JsConstructor; import jsinterop.annotations.JsPackage; import jsinterop.annotations.JsType; import jsinterop.base.JsArrayLike; import org.treblereel.gwt.three4g.math.Box3; import org.treblereel.gwt.three4g.math.Sphere; import org.treblereel.gwt.thre...
package com.yeepay.yop.sdk.http; import com.yeepay.yop.sdk.auth.credentials.YopCredentials; import com.yeepay.yop.sdk.client.ClientConfiguration; import com.yeepay.yop.sdk.exception.YopClientException; import com.yeepay.yop.sdk.internal.MultiPartFile; import com.yeepay.yop.sdk.internal.Request; import com.yeepay.yop.s...
/* * 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 ...
/* * 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...
package com.rdx64.servicetest; import android.app.Notification; import android.app.PendingIntent; import android.app.Service; import android.content.Intent; import android.graphics.BitmapFactory; import android.os.Binder; import android.os.IBinder; import android.support.annotation.IntDef; import android.support.v7.ap...
package com.my.ChatterBot; import android.app.Activity; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import android.content.Intent; import java.util.ArrayList; import java.util.HashMap; import java.util.Set; import java.util.UUID; public class BluetoothConnect { private static...
package com.dennis.conccurency.chapter15; /** * 描述:锁顶层接口 * * @author Dennis * @version 1.0 * @date 2020/3/18 11:09 */ public interface Lock { /** * 加锁 */ void lock() throws InterruptedException; /** * 解锁 */ void unlock(); }
package fixtures.resourceinheritance; import javax.ws.rs.GET; import javax.ws.rs.Path; @SuppressWarnings("javadoc") public class ConcreteResource extends AbstractResource { @GET @Path("bar") public String bar() { return "bar"; } @Override protected String getResourceById(String id) { return "Concrete Reso...
package com.github.vanroy.springdata.jest.internal; import java.util.*; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import io.searchbox.client.JestResult; import io.searchbox.cloning.CloneUtils; import io.searchbox.core.search.aggregation.MetricAggregation;...
/* * MIT License * * Copyright (c) 2021 MASES s.r.l. * * 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...
package net.minestom.server.instance.block.states; import net.minestom.server.instance.block.Block; import net.minestom.server.instance.block.BlockAlternative; /** * Completely internal. DO NOT USE. IF YOU ARE A USER AND FACE A PROBLEM WHILE USING THIS CODE, THAT'S ON YOU. */ @Deprecated( since = "forever",...
/* * Copyright (c) 1999, 2016, 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 ...
/* * Copyright 2018 John Grosh <john.a.grosh@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 ap...
/* * Copyright 2016-2018 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 required by applica...
/******************************************************************************* * MIT License * * Copyright (c) Igor Conrado Alves de Lima <igorcadelima@gmail.com> * * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and * associated documentation files (the "Software...
/* * Copyright 2008 The MITRE Corporation (http://www.mitre.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-...
/* * Kubernetes * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: v1.14.2 * * * 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...
/* * 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 program; import java.io.File; import java.io.FileNotFoundException; import java.util.Scanner; /** * * @author valmi */ pub...
/* * 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.project.convertedCode.includes.vendor.fzaninotto.faker.src.Faker; import com.runtimeconverter.runtime.RuntimeStack; import com.runtimeconverter.runtime.interfaces.ContextConstants; import com.runtimeconverter.runtime.includes.RuntimeIncludable; import com.runtimeconverter.runtime.includes.IncludeEventExcep...
package detective.task.aws; import com.amazonaws.auth.AWSCredentials; import com.amazonaws.services.dynamodbv2.AmazonDynamoDB; import com.amazonaws.services.s3.AmazonS3; import com.amazonaws.services.sns.AmazonSNS; import com.amazonaws.services.sqs.AmazonSQS; /** * @author James Luo */ public interface AwsService ...
/* * Copyright 2002-2016 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) 2021, WSO2 Inc. (http://www.wso2.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 applic...
/* * 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 br.com.luciano.repository.entity; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "pessoa") public class PessoaEntity { private Long id; private String nome;...
/* * 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 2009-2017 the original author or authors. * <p> * 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 * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * Unless requir...
/* * Copyright © 2009 HotPads (admin@hotpads.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...
/* * Copyright (c) 2008-2016, Hazelcast, 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 ...
package ru.a_z.tools.taxes.importer; import ru.a_z.tools.taxes.model.DividendPayment; import java.nio.file.Path; import java.util.List; /** * Интерфейс для импортеров из различных форматов */ public interface Importer { List<DividendPayment> execute(Path input); }
package de.jsfpraxis.detail.html5; import java.time.LocalTime; import javax.enterprise.context.RequestScoped; import javax.inject.Named; /** * Managed Bean für das Beipspiel mit <code>&lt;progress&gt;</code> * * @author Bernd Müller * */ @Named @RequestScoped public class ProgressController { public Progress...
/* * Copyright 2015 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 required by applica...
package org.vitrivr.cineast.core.segmenter.video; import org.apache.commons.lang3.tuple.ImmutablePair; import org.apache.commons.lang3.tuple.Pair; import org.apache.logging.log4j.Level; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.vitrivr.cineast.core.data.entities.Me...
package com.opzpy123.ware.dao; import com.opzpy123.ware.entity.UndoLogEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; /** * * * @author opzpy123 * @email 1441120973@qq.com * @date 2021-01-10 19:39:56 */ @Mapper public interface UndoLogDao extends Ba...
package demands; import shortages.Demands; import java.time.LocalDate; import java.util.List; import java.util.Map; import java.util.stream.Collectors; public class DemandsQuery { private DemandReadModelDao demandDao; public Demands readDemands(String productRefNo, LocalDate today) { List<DemandRead...
/* * Copyright 2017 LinkedIn Corp. Licensed under the BSD 2-Clause License (the "License"). See License in the project root for license information. */ package com.linkedin.kafka.cruisecontrol.model; import com.linkedin.kafka.cruisecontrol.analyzer.AnalyzerUtils; import com.linkedin.kafka.cruisecontrol.common.Resou...
package com.datingapp.fragment; import android.app.Activity; import android.app.Dialog; import android.app.ProgressDialog; import android.content.BroadcastReceiver; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.content.IntentFilter; import android...
/* * Java Information Dynamics Toolkit (JIDT) * Copyright (C) 2012, Joseph T. Lizier * * 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 Foundation, either version 3 of the License, or * (at yo...
package com.wfm.platform.entities; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import lombok.experimental.Accessors; /** * @author Weifengming * @description 字典 * @date 2020/2/2 */ @...
package org.castafiore.mobile; import org.castafiore.ui.Event; public class EXPage extends EXModifiable { private Event onInfiniteScroll_; private Event init; private Event show; private Event hide; private Event destroy; public EXPage(String name) { super(name, "ons-page"); } public EXPage setOnIn...
/* * $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 co...
/******************************************************************************* * Copyright 2009 OpenSHA.org in partnership with * the Southern California Earthquake Center (SCEC, http://www.scec.org) * at the University of Southern California and the UnitedStates Geological * Survey (USGS; http://www.usgs.gov) *...
package com.florian.rifts.blocks; import com.florian.rifts.Rifts; import com.florian.rifts.util.AbstractCorruptedBlock; import com.florian.rifts.util.Corruptor; import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; import net.minecraft.block.Block; import net.minecraft.block.Material; import net....
package org.oddjob.beancmpr.composite; import org.oddjob.beancmpr.Comparer; public interface ComparerFactory<T> { public Comparer<T> createComparerWith( ComparersByType comparersByType); }
/* * All GTAS code is Copyright 2016, The Department of Homeland Security (DHS), U.S. Customs and Border Protection (CBP). * * Please see LICENSE.txt for details. */ package gov.gtas.services; import gov.gtas.model.Message; import gov.gtas.repository.MessageRepository; import org.springframework.stereotype.Servic...
/* * XML Type: StrucDoc.Tr * Namespace: urn:hl7-org:v3 * Java type: uk.nhs.connect.iucds.cda.ucr.StrucDocTr * * Automatically generated - do not modify. */ package uk.nhs.connect.iucds.cda.ucr.impl; /** * An XML StrucDoc.Tr(@urn:hl7-org:v3). * * This is a complex type. */ public class StrucDocTrImpl extends ...
package org.firstinspires.ftc.teamcode; import com.qualcomm.robotcore.eventloop.opmode.Autonomous; import com.qualcomm.robotcore.util.ElapsedTime; /** * Created by Cormac on 10/18/2017. */ @Autonomous(name = "Auto: Test Encoders", group = "Main") public class AutoTestEncoders extends AutoFunctions { private Ela...
package com.maybetm.mplrest.entities.payments; import com.maybetm.mplrest.commons.repositories.ICommonRepository; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; /** * @author zebzeev-sv * @version 12.07.2019 10:56 */ public interface IDBPayment extends ICommonReposito...
package org.jabref.support; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.junit.jupiter.api.extension.ExtendWith; @Target(value = {ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionP...
package com.jrtclient.app; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.Parent; import javafx.stage.Stage; import javafx.fxml.FXMLLoader; import javafx.stage.WindowEvent; public class AppLauncher extends Application { public static void main(String[] args) { laun...
package ie.cit.caf.service; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.stereotype.Service; import ie....
/* LocaleInformation_ar_YE.java Copyright (C) 2002 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; either version 2, or (at you...
package org.jeecg.modules.business.order.service; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.business.order.entity.JshOrder; import org.jeecg.modules.business.order.vo.JshOrderPage; import java.io.Serializable; import java.util.Collection; /** * @Description: jsh_order * @...
package frc.team7170.lib; import edu.wpi.first.wpilibj.TimedRobot; import java.util.logging.Level; import java.util.logging.Logger; /** * A {@link TimedRobot TimedRobot} version that automatically closes all resources registered with the * {@link ResourceManager ResourceManager} and logs any error that might occur...
package kg.apc.emulators; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.IOException; public class FilesTestTools { /** * Compare 2 text files and verify their content is equal * Do not take care of newLine * Do not take care of empty lines at end of ...
/** *org.restfulwhois.rdap.core.autnum.dao.impl * @author jiashuo * */ package org.restfulwhois.rdap.core.autnum.dao.impl;
/* * Copyright 2020 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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
/* * 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 com.github.somi92.seecsk.model.tables.trening; import com.github.somi92.seecskcommon.domain.Prisustvo; import java.text.Simple...
/* * 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.yusys.bione.plugin.spreadjs.service; import java.util.Map; import org.apache.commons.lang3.BooleanUtils; import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.math.NumberUtils; import org.apache.poi.hssf.usermodel.HSSFPalette; import org.apache.poi.hssf.util.HSSFColor; import org.ap...
package org.hl7.fhir.instance.model.valuesets; /* Copyright (c) 2011+, HL7, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above c...
package org.narrative.network.customizations.narrative.niches.referendum.services; import org.narrative.common.util.IPDateUtil; import org.narrative.network.customizations.narrative.niches.referendum.Referendum; import java.sql.Timestamp; /** * Created by IntelliJ IDEA. * User: jonmark * Date: 2/27/18 * Time: 7:...
package io.github.tiagoadmstz.dal.oracle.repositories; import io.github.tiagoadmstz.dal.oracle.models.BrasindiceDataModel; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface BrasindiceDataModelRepository extends JpaRepository<Br...
package utils; import beans.Staff; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import static utils.Constant.Administrator; public class UpdateStaffProcess { public static boolean check(Staff staff){ try{ String str = String....
import org.apache.commons.text.TextStringBuilder; import org.apache.commons.text.matcher.StringMatcher; import org.apache.commons.text.StringTokenizer; import java.io.StringReader; import java.nio.CharBuffer; import java.util.ArrayList; import java.util.List; import java.util.Locale; class TextStringBuilderTest { ...
package com.bdqn.dao; import com.bdqn.entity.LicensePlateCorrection; import org.apache.ibatis.annotations.Param; import java.util.List; public interface LicensePlateCorrectionDao { // 查 public List<LicensePlateCorrection> getAllByConfigCode(LicensePlateCorrection licensePlateCorrection); // 删 ...
/* * XML Type: CT_Func * Namespace: http://schemas.openxmlformats.org/officeDocument/2006/math * Java type: org.openxmlformats.schemas.officeDocument.x2006.math.CTFunc * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.officeDocument.x2006.math; import org.apache.xmlbeans.impl.sc...
package top.biduo.exchange.entity; import java.io.Serializable; /** * Created by Administrator on 2018/3/1. */ public class Country implements Serializable { private String zhName; private String enName; private String areaCode; private String language; private String sort; private String l...