text stringlengths 7 995k |
|---|
package us.ihmc.scs2.definition.configuration;
public class WindowConfigurationDefinition
{
private double positionX, positionY;
private double width, height;
private boolean maximized;
public void setPositionX(double positionX)
{
this.positionX = positionX;
}
public void setPositionY(doub... |
/*
* Copyright (c) 2021 The Hydra authors
*
* 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, copy, modify, merge, p... |
/*
* Copyright (c) 2018 ACINO Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... |
/*
* #%L
* GwtMaterial
* %%
* Copyright (C) 2015 - 2017 GwtMaterialDesign
* %%
* 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 2015 The SageTV Authors. 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 ap... |
/*
* Copyright © 2020 Cask Data, 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 t... |
/*
Copyright 2011-2016 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed t... |
/*
* Copyright 2013-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 ap... |
/**
* Copyright (C) 2008 The Android Open Source Project
* Copyright (C) 2014 The TeamEos Project
* Copyright (C) 2016 The DirtyUnicorns Project
*
* @author: Randall Rushing <randall.rushing@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in com... |
/****************************************************************************\
* *
* SNEE (Sensor NEtwork Engine) *
* http://code.google.com/p/snee *
* ... |
package List_Arrays.ListExercise;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class HouseParty {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = Integer.parseInt(scanner.nextLine());
List<String> people = ... |
/*
* The MIT License (MIT)
*
* Copyright (c) 2017 socraticphoenix@gmail.com
* Copyright (c) 2017 contributors
*
* 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,
* in... |
/*
* MIT License
*
* Copyright (c) 2022 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... |
/**
* Copyright (C) 2012 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.analytics.financial.credit.creditdefaultswap;
import javax.time.calendar.TimeZone;
import javax.time.calendar.ZonedDateTime;
import org.testng.annotations.Te... |
package com.mycompany.store.web.rest;
import com.mycompany.store.domain.Shipment;
import com.mycompany.store.service.ShipmentService;
import com.mycompany.store.web.rest.errors.BadRequestAlertException;
import io.github.jhipster.web.util.HeaderUtil;
import io.github.jhipster.web.util.PaginationUtil;
import io.github.... |
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) annotate safe
package com.firebase.client.authentication;
import com.firebase.client.FirebaseError;
import java.util.Map;
// Referenced classes of package com.firebase... |
package com.commercetools.api.client;
import io.vrap.rmf.base.client.utils.Generated;
@Generated(value = "io.vrap.rmf.codegen.rendring.CoreCodeGenerator", comments = "https://github.com/vrapio/rmf-codegen")
public interface Deprecatable200Trait<T extends Deprecatable200Trait<T>> {
default Deprecatable200Trait<T>... |
/* Copyright 2002-2022 CS GROUP
* Licensed to CS GROUP (CS) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* CS 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 ... |
package com.yahoo.nayani.timessearch;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.os.Bundle;
import android.support.v4.app.DialogFragment;
import java.util.Calendar;
public class DatePickerFragment extends DialogFragment {
private DatePickerDialog.OnDateSetListener listener;
... |
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) annotate safe
package android.support.v4.graphics;
import android.graphics.Color;
public final class ColorUtils
{
private ColorUtils()
{
// 0 0:aload_0 ... |
// This is mutant program.
// Author : ysma
public class Gaussian
{
public static double phi( double x )
{
return Math.exp( -x * x / 2 ) / Math.sqrt( 2 * Math.PI );
}
public static double phi( double x, double mu, double sigma )
{
return phi( (x - mu) / sigma ) / sigma;
}
... |
package com.example.demo.entity;
import com.example.demo.utils.ConvertTypeUtil;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.math.NumberUtils;
import java.text.ParseException;
import java.util.Date;
/**
* 将一个值按照调用的方法进行转换<br>
* ----------------------------------------<br>
* ConvertM... |
// Copyright (c) 2015 firsh.ME
package fuck.gfw.client;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import fuck.gfw.rudp.Route;
import java.io.*;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.ArrayList;
import java.util.HashMap;
public class PortMapManager ... |
package com.suchorski.siscaq.services;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.suchorski.siscaq.exceptions.DatabaseException;
import com.suchorski.siscaq.models.Modality;
publ... |
import java.util.Scanner;
import java.util.ArrayList;
/**
* <h1>RiskMeter</h1>
* This program keeps track of the active cases of some epidemic disease
* in a city and report the risk code for each region in the city.
* <p>
* <b> Note: <b> not tested
*
* @author George Daoud
* @version 1.0
*/
public class App... |
/*
* Copyright 2005 Robert Cooper, Temple of the Screaming Penguin
*
* 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 requi... |
//========================================================================
//Copyright 2007-2009 David Yu dyuproject@gmail.com
//------------------------------------------------------------------------
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance wit... |
package gang.com.screencontrol.util;
import android.app.Activity;
import android.app.ActivityManager;
import android.content.Context;
import java.util.Stack;
/**
* 应用程序Activity管理类:用于Activity管理和应用程序退出
*
* Created by xiaogangzai on 2017/4/24.
*/
public class AppManager {
private static Stack<Activity> activit... |
package com.soonsoft.uranus.site.interceptor;
import java.util.Collection;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.soonsoft.uranus.security.SecurityManager;
import com.soonsoft.uranus.security.entity.RoleInfo;
import com.soonsoft.uranus.security.entity.... |
/**
* Copyright (C) 2012-2013 eBusiness Information (www.ebusinessinformation.fr)
*
* 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
*
* U... |
/*
* File : Classifier.java
* Created : 18-Feb-2009
* By : atrilla
*
* Emolib - Emotional Library
*
* Copyright (c) 2009 Alexandre Trilla &
* 2007-2012 Enginyeria i Arquitectura La Salle (Universitat Ramon Llull)
*
* This file is part of Emolib.
*
* You should have received a copy of the rights gran... |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... |
/*
* Copyright (C) 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... |
package com.bluegosling.concurrent.atoms;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.Function;
import java.util.function.Predicate;
/**
* An atom whose values are in thread-local storage. This varies a bit from other atoms in that
* one thread <em>cannot</em> see changes made to ... |
package categories;
public interface SlowTests{} |
package org.zstack.storage.fusionstor.backup;
import org.springframework.http.HttpMethod;
import org.zstack.header.message.APIMessage;
import org.zstack.header.message.APIParam;
import org.zstack.header.rest.APINoSee;
import org.zstack.header.rest.RestRequest;
import org.zstack.header.rest.RestResponse;
import org.zst... |
package main.domain;
public class LongestCommonSubstring {
public static void main(String[] args) {
String typo = "hish";
String[] suggestion = new String[]{"fish", "hush"};
String solve = new LongestCommonSubstring().solve(typo, suggestion);
System.out.println(solve);
}
... |
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
class Locks
{
private Lock lockA = new ReentrantLock(), lockB = new ReentrantLock();
private Object monitor = null;
private void f1() {}
private void f2() {}
private void f3() {}
private void g() {}
public void testLoc... |
package org.hzero.sso.core.security.service;
import io.choerodon.core.oauth.CustomUserDetails;
import org.hzero.sso.core.domain.entity.SsoUser;
public interface SsoUserDetailsBuilder {
/**
* 构建 CustomUserDetails
*
* @param user User
* @return CustomUserDetails
*/
CustomUserDetails... |
package com.gulf.async.gateway.spi.ha;
/**
* Created by xubai on 2019/10/11 12:31 PM.
*/
public interface ServiceNode {
String url();
Integer weight();
} |
package com.ratel.config;
import com.ratel.framework.utils.SecurityUtils;
import com.ratel.modules.system.domain.Dept;
import com.ratel.modules.system.service.dto.RoleSmallDto;
import com.ratel.modules.system.service.dto.UserDto;
import com.ratel.modules.system.service.DeptService;
import com.ratel.modules.system.serv... |
/*
* Copyright 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 applicabl... |
/*
* 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 (c) HALive 2015
* See LICENCE For Licence information.
*/
package halive.visualsort.gui.rendering;
/**
* Describes a Renderer Used to Render the Tiles
*/
public interface IVisualSortRenderer {
/**
* Returns true if the renderer is Currently rendering
*
* @return see Above
... |
package com.arif.restfulinpeace;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
public class Utils {
public static String getLoggedUserName(){
Authentication auth = SecurityContextHolder.getContext().getAuthentication();
... |
/* Generated By:JavaCC: Do not edit this line. SimpleCharStream.java Version 4.0 */
/* JavaCCOptions:STATIC=false */
/**
* An implementation of interface CharStream, where the stream is assumed to
* contain only ASCII characters (without unicode processing).
*/
public class SimpleCharStream
{
/** Whether parser is ... |
package org.apache.spark.streaming.dstream;
class ReducedWindowedDStream<K extends java.lang.Object, V extends java.lang.Object> extends org.apache.spark.streaming.dstream.DStream<scala.Tuple2<K, V>> {
// not preceding
// TypeTree().setOriginal(TypeBoundsTree(TypeTree(), TypeTree()))
// TypeTree().setOriginal(T... |
/*
* Copyright 2002-2004 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... |
/**
* Copyright 2016 JustWayward Team
* <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 required by applicable law... |
/*
* Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... |
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 查询支付方式列表
*
* @author auto create
* @since 1.0, 2019-01-16 17:31:19
*/
public class KoubeiCateringPosPaymodeQueryModel extends AlipayObject {
private static final long serialVersionUID = 239... |
/*
* ---------------------------------------------------------------------------------------
* Licença : MIT - Copyright 2019 Viniciusalopes (Vovolinux) <suporte@vovolinux.com.br>
* Criado em : 19/09/2019
* Projeto : ExerciciosN1
* Finalidade: N1
* -------------------------------------------------------------... |
package com.ttz.taungthuzay.options;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;
import androidx.appcompat.app.AppCom... |
package stolat.bootstrap;
import io.zonky.test.db.AutoConfigureEmbeddedDatabase;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springfr... |
/*
* Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... |
package com.sensiblemetrics.api.alpenidos.pattern.event.asynchronous.iface;
/**
* Events that fulfill the start stop and list out current status behaviour
* follow this interface
*/
public interface IEvent {
void start();
void stop();
void status();
} |
/*
* Copyright 2007-2021, CIIC Guanaitong, Co., Ltd.
* All rights reserved.
*/
package com.ciicgat.api.core;
import com.ciicgat.api.core.kubernetes.KubernetesClientConfig;
import com.ciicgat.grus.alert.Alert;
import feign.RetryableException;
import feign.Retryer;
import org.slf4j.Logger;
import org.slf4j.LoggerFac... |
/*
* Copyright 2016-2021 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 giris;
import java.util.Scanner;
public class calculator {
public static void main(String[] args) {
Scanner inp=new Scanner(System.in);
double num1,num2;
int select;
System.out.print("Enter first number");
num1=inp.nextDouble();
System.out.print("Enter seco... |
package rocks.inspectit.ui.rcp.model;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.swt.graphics.Image;
import org.eclipse.ui.progress.IElementCollector;
import rocks.inspectit.shared.all.cmr.model.JmxDefinitionDataIdent;... |
package com.example.todolist.model;
import android.arch.persistence.room.Entity;
import android.arch.persistence.room.PrimaryKey;
@Entity(tableName = "note_table")
public class NoteDaoModel {
@PrimaryKey(autoGenerate = true)
int id;
String title;
String description;
int priority;
boolean compl... |
package igentuman.bfr.common.slot;
import java.util.Objects;
import java.util.function.Predicate;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import mekanism.api.IContentsListener;
import mekanism.api.annotations.FieldsAreNonnullByDefault;
import mekanism.api.annotations.No... |
/**
* Copyright © 2012-2016 <a href="https://github.com/tlkzzz/jeesite">JeeSite</a> All rights reserved.
*/
package com.tlkzzz.jeesite.common.supcan.annotation.common.properties;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.la... |
package edu.gdei.gdeiassistant.Aspect;
import com.alibaba.fastjson.JSON;
import edu.gdei.gdeiassistant.Exception.ChargeException.SecurityInvalidException;
import edu.gdei.gdeiassistant.Pojo.Entity.EncryptedData;
import edu.gdei.gdeiassistant.Pojo.Entity.RequestSecurity;
import edu.gdei.gdeiassistant.Pojo.Entity.Reques... |
package com.codepathgroup5.activities;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;
import com.codepathgroup5.parse.UserParse;
import com.codepat... |
/*
* 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 ... |
//n 皇后问题研究的是如何将 n 个皇后放置在 n×n 的棋盘上,并且使皇后彼此之间不能相互攻击。
//
//
//
// 上图为 8 皇后问题的一种解法。
//
// 给定一个整数 n,返回 n 皇后不同的解决方案的数量。
//
// 示例:
//
// 输入: 4
//输出: 2
//解释: 4 皇后问题存在如下两个不同的解法。
//[
// [".Q..", // 解法 1
// "...Q",
// "Q...",
// "..Q."],
//
// ["..Q.", // 解法 2
// "Q...",
// "...Q",
// ".Q.."]
//]
//
//
//
//
// 提示:
//
//
... |
package DegreeAuditParser;
public class ParseException extends Exception {
public ParseException() {
super();
}
public ParseException(String msg) {
super(msg);
}
} |
/*
*AVISO LEGAL
© Copyright
*Este programa esta protegido por la ley de derechos de autor.
*La reproduccion o distribucion ilicita de este programa o de cualquiera de
*sus partes esta penado por la ley con severas sanciones civiles y penales,
*y seran objeto de todas las sanciones legales que correspondan.
*Su conteni... |
/**
* Copyright (c) 2013 Stefan Marr, stefan.marr@vub.ac.be
* Software Architecture Group, Hasso Plattner Institute, Potsdam, Germany
* http://www.hpi.uni-potsdam.de/swa/
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "So... |
/*
Copyright (c) 2012 LinkedIn 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... |
/*
* Copyright (C) 2015 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 (C) 2010-2015 Morgner UG (haftungsbeschränkt)
*
* This file is part of Structr <http://structr.org>.
*
* Structr is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 o... |
/*
* Copyright 2017 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... |
/*
* ice4j, the OpenSource Java Solution for NAT and Firewall Traversal.
*
* Copyright @ 2015 Atlassian Pty 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.apa... |
package org.hl7.fhir.r4.test;
import org.fhir.ucum.UcumException;
import org.hl7.fhir.exceptions.FHIRException;
import org.hl7.fhir.r4.conformance.ProfileUtilities;
import org.hl7.fhir.r4.formats.IParser.OutputStyle;
import org.hl7.fhir.r4.formats.XmlParser;
import org.hl7.fhir.r4.model.Base;
import org.hl7.fhir.r4.mo... |
package cn.hutool.core.thread.threadlocal;
/**
* 带有Name标识的 {@link InheritableThreadLocal},调用toString返回name
*
* @param <T> 值类型
* @author looly
* @since 4.1.4
*/
public class NamedInheritableThreadLocal<T> extends InheritableThreadLocal<T> {
private final String name;
/**
* 构造
*
* @param name 名字
*/
p... |
/**
* EFTEMj - Processing of Energy Filtering TEM images with ImageJ
*
* Copyright (c) 2014, Michael Entrup b. Epping <michael.entrup@wwu.de>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:... |
package de.buw.tmdt.plasma.services.srs.handler;
import de.buw.tmdt.plasma.ars.labeling.lm.shared.feignclient.LabelMatchingApiClient;
import de.buw.tmdt.plasma.services.dms.shared.dto.DataSourceSchemaDTO;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
@Service
... |
package org.sirix.node.immutable.json;
import static com.google.common.base.Preconditions.checkNotNull;
import java.math.BigInteger;
import org.sirix.api.visitor.JsonNodeVisitor;
import org.sirix.api.visitor.VisitResult;
import org.sirix.node.NodeKind;
import org.sirix.node.interfaces.StructNode;
import org.sirix.node... |
// Copyright 2000-2020 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 org.jetbrains.idea.svn;
import com.intellij.openapi.vcs.FileStatus;
import com.intellij.openapi.vcs.FileStatusFactory;
import java.awt.*;
public final class SvnFileSt... |
/**
* Copyright 2018 bejson.com
*/
package org.yx.core.express.dao;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Auto-generated: 2018-07-19 22:27:22
*
* @author bejson.com (i@bejson.com)
* @website http://www.bejson.com/java2pojo/
*/
public class ExpressInfo {
@JsonP... |
/*
* 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) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/
package com.microsoft.azure.cognitiveservices.computervision;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annota... |
package com.example.reactnativebobtoast;
import android.app.Application;
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.ReactInstanceManager;
... |
/**
* Copyright 2000-present Liferay, 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 a... |
package de.spring_buch.businessobjects;
import de.spring_buch.framework.BusinessObject;
public class Ware extends BusinessObject {
private int id;
private String bezeichnung;
private double preis;
public Ware() {
super();
}
public Ware(String bezeichnung, double preis) {
s... |
/*
* 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 applicab... |
package beans;
import org.bhavaya.util.DefaultObservable;
/**
* Created by IntelliJ IDEA.
* User: deana
* Date: 02-Apr-2004
* Time: 14:29:59
* To change this template use File | Settings | File Templates.
*/
public abstract class TradeType extends DefaultObservable{
public abstract String getTypeName();
... |
/*
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
package laurencewarne.secondspace.common.ship;
import java.util.ArrayList;
import java.util.Collection;
import java.util.stream.Collectors;
import com.badlogic.gdx.math.Rectangle;
import com.badlogic.gdx.math.Vector2;
import com.google.common.collect.Lists;
public final class Rectangles {
private Rectangles() {... |
/**----------------------------------------------------------------------------
* GreasySpoon
* Copyright (C) 2008 Karel Mittig
*-----------------------------------------------------------------------------
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU ... |
package com.airbnb.epoxy;
import android.content.Context;
import android.support.annotation.Dimension;
import android.support.annotation.IntRange;
import android.support.annotation.Nullable;
import android.support.annotation.StringRes;
import android.view.View;
import com.airbnb.epoxy.ModelProp.Option;
import java.u... |
/*
* 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 pharmacymanagementsystem;
import javax.swing.JOptionPane;
/**
*
* @author chai
*/
public class adminRegister extends javax... |
/**
* Copyright (c) 2008-2012 Bird Dog Games, Inc..
*
* This file is part of Ardor3D.
*
* Ardor3D is free software: you can redistribute it and/or modify it
* under the terms of its license which may be found in the accompanying
* LICENSE file or at <http://www.ardor3d.com/LICENSE>.
*/
package com.ardor3d.util... |
package com.sap.scimono.api.helper;
import com.sap.scimono.entity.ErrorResponse;
import com.sap.scimono.entity.validation.patch.PatchValidationException;
import com.sap.scimono.exception.SCIMException;
import javax.validation.ConstraintViolation;
import javax.validation.ConstraintViolationException;
import javax.vali... |
/*
* MIT License
*
* Copyright (c) 2018 Alexei Beizerov
*
* 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, copy... |
/**
* Copyright (c) 2011-2014, hubin (jobob@qq.com).
* <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 required by... |
/*
* 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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.