text
stringlengths
7
995k
package com.yulu.dao.impl; import java.util.List; import org.apache.ibatis.session.SqlSession; import org.mybatis.spring.support.SqlSessionDaoSupport; import com.yulu.dao.UserDao; import com.yulu.entity.User; /** * SpringJdbc: JdbcDaoSupport * Hibernate: HibernateDaoSupport * Mybatis: SqlSessionDaoSupport * */ ...
package logica.webservices; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Clase Java para listaDeReproduccion complex...
/* 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 * distribut...
package LeetCodePractice; import java.util.Arrays; public class _130SurroundedRegions { public static void main(String[] args) { solve(new char[][]{{'X','X','X','X'}, {'X','O','O','X'}, {'X','X','O','X'}, {'X','O','X','X'}}); } public static void solve(char[][] board) { for (int i = 1; i ...
package org.alien4cloud.tosca.editor.operations.outputs; import lombok.Getter; import lombok.Setter; import org.alien4cloud.tosca.editor.operations.AbstractEditorOperation; @Getter @Setter public abstract class AbstractOutputOperation extends AbstractEditorOperation { /** The name of the output to add/remove or r...
package pl.jalokim.propertiestojson.domain; import lombok.Getter; import lombok.Setter; @Getter @Setter public class Group { private String type; private String name; }
package com.example.polls.service; import com.example.polls.payload.role.RoleBasicDto; import java.util.List; public interface RoleService { RoleBasicDto getById(Long id); List<RoleBasicDto> list(); RoleBasicDto create(RoleBasicDto roleBasicDto); RoleBasicDto update(Long id, RoleBasicDto roleBasi...
package com.prowidesoftware.swift.model.mx.dic; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import org.apache.commons.lang3.bui...
/** * <copyright> * </copyright> * * $Id$ */ package org.reclipse.structure.specification.provider; import java.util.Collection; import java.util.List; import org.eclipse.emf.common.notify.AdapterFactory; import org.eclipse.emf.common.notify.Notification; import org.eclipse.emf.edit.provider.ComposeableAdapterF...
package com.loopme; public class NativeVideoBinder { private int mLayoutId; private int mBannerViewId; private NativeVideoBinder(Builder builder) { mLayoutId = builder.mLayoutId; mBannerViewId = builder.mBannerViewId; } public int getLayout() { return mLayoutId; } ...
package com.florianmski.spongeframework; import android.app.Application; import android.os.StrictMode; import com.crashlytics.android.Crashlytics; import com.squareup.picasso.Picasso; import io.fabric.sdk.android.Fabric; import timber.log.Timber; public abstract class SpongeApplication extends Application { pub...
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */ package com.microsoft.azure.management.storage.v2018_07_01; import java.util.Collection...
package guis; import java.awt.BorderLayout; import java.awt.Image; import java.text.DecimalFormat; import javax.swing.ImageIcon; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.border.EmptyBorder; import gameplay.Company; import gameplay.User; import utility.AppearanceConstants; import utili...
package za.co.enigma.turing.mda.model.ea.bridge.jpa; import javax.ejb.Stateless; import javax.inject.Inject; import javax.persistence.EntityManager; import model.TMainttype; import za.co.enigma.turing.mda.jpa.crud.CrudDAOService; @Stateless public class MainttypeDAO extends CrudDAOService<TMainttype> { public Mai...
package com.roche.system.service; import java.util.List; import com.roche.system.domain.SysNotice; /** * 公告 服务层 * * @author Aarn A Dong */ public interface ISysNoticeService { /** * 查询公告信息 * * @param noticeId 公告ID * @return 公告信息 */ public SysNotice selectNoticeById(Long noticeI...
package ui.chooser; import java.util.ArrayList; import java.util.List; import javafx.scene.Node; import javafx.scene.control.Alert; import javafx.scene.control.Alert.AlertType; import javafx.scene.control.Button; import javafx.scene.control.ColorPicker; import javafx.scene.control.Label; import javafx.scene.layout.Bo...
package in.nullify.survey; import android.graphics.Canvas; import android.support.v7.widget.RecyclerView; import android.support.v7.widget.helper.ItemTouchHelper; import android.view.View; /** * Created by Abhishekpalodath on 08-11-2018. */ public class RecyclerItemTouchHelperProb extends ItemTouchHelper.SimpleCal...
/* * Copyright (c) 2008-2016-2018, 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 requ...
package com.cqu.edu.ebmis.domain; import java.util.Date; public class TaskInfoDO { private Integer taskInfoID; private Integer status; private Integer projectID; private String clientID; private Date distributedTime; private Date finishedTime; private String distributedTime1; private String finis...
package com.nagao.mars.domian.vo; import java.io.Serializable; public class Member implements Serializable { /** * */ private static final long serialVersionUID = 3533974371983036803L; private String id; private String name; private String email; private String telephone; private String createDate; publ...
/* * JBoss, Home of Professional Open Source. * Copyright 2012 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 Licen...
package org.jcodec.containers.mp4; import org.jcodec.common.io.NIOUtils; import org.jcodec.common.io.SeekableByteChannel; import org.jcodec.containers.mp4.boxes.AliasBox; import org.jcodec.containers.mp4.boxes.Box; import org.jcodec.containers.mp4.boxes.ChunkOffsets64Box; import org.jcodec.containers.mp4.boxes.ChunkOff...
import java.rmi.Remote; import java.rmi.RemoteException; public interface IDateTime extends Remote { public String getDateTime() throws RemoteException; }
package oscfg.diagram.edit.policies; import java.util.Iterator; import org.eclipse.emf.ecore.EAnnotation; import org.eclipse.gef.commands.Command; import org.eclipse.gef.commands.CompoundCommand; import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; import org.eclipse.gmf.runtime.diagram.core.commands...
/* * Copyright 2012 Benjamin Glatzel <benjamin.glatzel@me.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...
/* * ==================================================================== * 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 org.peg4d.query; import java.util.LinkedList; import java.util.List; public class RList extends LinkedList<Object> { private static final long serialVersionUID = -3634406185210488565L; @SuppressWarnings("unchecked") public void addAndFlat(Object value) { if(value instanceof List) { this.addAll((List<...
package net.bis5.tools.lastone.app; import java.util.List; import java.util.stream.Collectors; import javax.enterprise.inject.Model; import javax.inject.Inject; import net.bis5.tools.lastone.entities.Item; @Model class LoadItemsInteractor implements LoadItemsUseCase { @Inject ItemsStore store; @Overri...
/* * 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 Diennea S.r.l. under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. Diennea S.r.l. licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this ...
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed u...
/** * vertigo - application development platform * * Copyright (C) 2013-2020, Vertigo.io, team@vertigo.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/li...
/* * 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 examen1parcial; /** * * @author HP */ public class usuario { private String nombre; private int edad; private ...
begin_unit|revision:0.9.5;language:Java;cregit-version:0.0.1 begin_comment comment|/* * 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 ...
/** * Copyright (c) 2008-2014 Ardor Labs, 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.math; im...
/* * Redistributing "JSON.simple" library. Please visit https://github.com/fangyidong/json-simple * * Minor modification: using StringBuilder. */ package io.github.udaychandra.bdd.json; import java.io.IOException; import java.io.Writer; import java.util.List; import java.util.Map; /** * @author FangYidong<fangy...
package com.glj.mall.product.controller; import java.util.Arrays; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation...
/* * Copyright 2001-2014 Stephen Colebourne * * 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...
/* * JBoss, Home of Professional Open Source * Copyright 2014 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 Licens...
/* AUTO-GENERATED FILE. DO NOT MODIFY. * This class was automatically generated by the * static binding generator from the resources it found. * Please do not modify by hand. */ package com.tns.gen.java.lang; public class Object_frame_30_36_AttachListener extends java.lang.Object implements com.tns.NativeScrip...
package org.schema.api.model.thing.creativeWork.creativeWorkSeries; import org.schema.api.model.thing.creativeWork.CreativeWork; import java.util.Date; import java.util.Date; public class CreativeWorkSeries extends CreativeWork { private Date endDate;//Notes - Allowed types- [Date, DateTime] private String issn; p...
package com.github.senox13.organic_tech.items; import net.minecraft.item.BlockItem; import net.minecraft.item.BucketItem; import net.minecraft.item.Item; import net.minecraft.item.Item.Properties; import net.minecraft.item.ItemGroup; import net.minecraft.item.ItemStack; import net.minecraft.item.ItemTier; import net.m...
package com.yyt.axios.service.impl; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import com.yyt.axios.entity.ManagerPO; import com.yyt.axios.mapper.ManagerMapper; import com.yyt.axios.mapper.RoleMapper; import com.yyt.axios.service.UserService; import com.yyt.axios.util.MD5Util; impo...
/** * 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 2014 Alexey Andreev. * * 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...
public class Creon extends TVSMotors { private String name; private int price; private int mileage; public Creon() { } public Creon(String name, int price, int mileage) { super(); this.name = name; this.price = price; this.mileage = mileage; } @Override public String getName() { return name; } ...
/***************************************************************** * 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 * ...
/* * BreadWallet * * Created by Ed Gamble <ed@breadwallet.com> on 1/22/18. * Copyright (c) 2018 breadwallet LLC * * 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, ...
package com.optimagrowth.license.service; import java.util.List; import java.util.UUID; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.context.MessageSource; import org.springframework.stereotype.Service; import com.optimagrowth.license.config.ServiceConfig; impor...
package com.deposit.models; import javax.persistence.*; import com.fasterxml.jackson.annotation.JsonFilter; import com.fasterxml.jackson.annotation.JsonProperty; @Entity @Table(name = "demand_deposit_account") @JsonFilter("demandDepositFilter") public class DemandDepositAccount extends DepositAccount { public De...
/* * Copyright 2018 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
package com.codepath.sid_instagram_clone; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.ImageView; import android.widget.Te...
package com.huaweicloud.sdk.iotda.v5.model; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue; import java.util.function.Consumer; import java.util.Objects...
/* * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under t...
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1 // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2021.05.13 ...
package com.github.pesennik.db.sql; import com.github.pesennik.model.VerificationRecord; import com.github.pesennik.model.VerificationRecordId; import com.github.pesennik.model.UserId; import com.github.pesennik.model.VerificationRecordType; import com.github.mjdbc.Bind; import com.github.mjdbc.BindBean; import com.gi...
package wolfogre.kh6_1; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.os.Environment; import android.support.design.widget.FloatingActionButton; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.KeyEv...
/* * 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...
/** * * Class RealLiteralExpAS.java * * Generated by KMFStudio at 17 February 2004 14:38:43 * Visit http://www.cs.ukc.ac.uk/kmf * */ package ocl.syntax.ast.expressions; public interface RealLiteralExpAS extends ocl.syntax.SyntaxElement, PrimitiveLiteralExpAS, LiteralExpAS, PrimaryExpAS, ...
/* * 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) 2009-2014, Data Geekery GmbH (http://www.datageekery.com) * All rights reserved. * * This work is dual-licensed * - under the Apache Software License 2.0 (the "ASL") * - under the jOOQ License and Maintenance Agreement (the "jOOQ License") * ===================================================...
/* * Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * The Universal Permissive License (UPL), Version 1.0 * * Subject to the condition set forth below, permission is hereby granted to any * person obtaining a copy of ...
package com.android.hoxapp; import com.android.hoxapp.R; import android.app.admin.DeviceAdminReceiver; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.widget.Toast; public class AdminReceiver extends DeviceAdminReceiver { static SharedPrefe...
package authServer; import Comms.KeyDistributor; import Comms.Messenger; import java.net.ServerSocket; public class Controller { /** * @author Silver-VS */ public static void main(String[] args) { Messenger messenger = new Messenger(); ServerSocket serverSocket = messenger.initSe...
package ie.hjkl.companieshouse.files; import ie.hjkl.companieshouse.data.directory.SnapshotCompany; import org.joda.time.LocalDate; import org.junit.Before; import org.junit.Test; import java.util.ArrayList; import java.util.List; import static org.junit.Assert.assertEquals; public class DirectorySnapshotTest { ...
package com.sinosoft.siava.encrypt; import org.apache.commons.codec.binary.Base64; import javax.crypto.Cipher; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.security.*; import java.security.interfaces.RSAPrivateKey; import java.security.interfaces.RSAPublicKey; import java.security.spe...
package edu.rutgers.MOST.presentation; import java.awt.Component; import java.awt.FontMetrics; import java.awt.Insets; import javax.swing.JTable; import javax.swing.table.DefaultTableCellRenderer; import edu.rutgers.MOST.config.LocalConfig; public class ReactionsTableCellRenderer extends DefaultTableCellRenderer{ p...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE89_SQL_Injection__getQueryString_Servlet_executeQuery_75a.java Label Definition File: CWE89_SQL_Injection.label.xml Template File: sources-sinks-75a.tmpl.java */ /* * @description * CWE: 89 SQL Injection * BadSource: getQueryString_Servlet Parse id param out of the UR...
/* * SonarQube JaCoCo Plugin * Copyright (C) 2018-2019 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of ...
/* * OperationSearcher.java * --------------------------------- * Copyright (c) 2021 * RESOLVE Software Research Group * School of Computing * Clemson University * All rights reserved. * --------------------------------- * This file is subject to the terms and conditions defined in * file 'LICENSE.txt', which...
package com.restshop.application.data.generator; import com.restshop.application.data.Role; import com.restshop.application.data.entity.User; import com.restshop.application.data.service.UserRepository; import com.vaadin.flow.spring.annotation.SpringComponent; import java.util.Collections; import java.util.stream.Coll...
/* * Copyright 2019, Yahoo Inc. * Licensed under the Apache License, Version 2.0 * See LICENSE file in project root for terms. */ package com.yahoo.elide.datastores.aggregation.queryengines.sql; import static org.junit.jupiter.api.Assertions.assertEquals; import com.yahoo.elide.core.request.Sorting; import com.ya...
package br.ufpe.cin.if710.datamanagement; import android.app.Activity; import android.content.Intent; import android.database.Cursor; import android.os.AsyncTask; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.Button; import android.widget.CursorAdapter; im...
/* * Copyright © 2016 <code@io7m.com> http://io7m.com * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND ...
/* * Copyright (c) 2018, 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...
package com.company.challenge3; import java.util.ArrayList; public class Main { public static String LetterChanges(String str) { StringBuilder replaceString = new StringBuilder(); ArrayList<Character> vowelsLower = new ArrayList<>(); vowelsLower.add('a'); vowelsLower.add('o'); vowelsLower.add('e...
package com.dynsoft.warehouse.reports; public class Configuration { public final static String NAME = "GuG-IT GbR - Warehouse Reports"; public final static String VERSION = "0.0.1"; }
package net.haesleinhuepf.clijx.clij2wrappers; import net.haesleinhuepf.clij.macro.CLIJMacroPlugin; import org.scijava.plugin.Plugin; // this is generated code. See src/test/net.haesleinhuepf.clijx.codegenerator.CLIJ2WrapperGenerator for details. @Plugin(type = CLIJMacroPlugin.class, name = "CLIJx_maximumImages") pu...
/* * Copyright 2018 - 2021 Swiss Federal Institute of Technology Lausanne (EPFL) * * 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...
package seedu.recipe.model.recipe.ingredient; import java.util.Set; import java.util.TreeSet; /** * Consists of magnitudes of main ingredient types being tracked by goals and main ingredient type that meets * nutritional requirements. */ public class MainIngredientTypeMagnitude { //average nutritional count pe...
package org.meruvian.yama.core.commons; import org.meruvian.yama.core.DefaultRepository; import org.springframework.stereotype.Repository; @Repository public interface FileInfoRepository extends DefaultRepository<FileInfo> { }
/* * Copyright 2020 Netflix, Inc. * <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 or agr...
package ch.heigvd.amt.mvcdemo.web; import ch.heigvd.amt.mvcdemo.model.User; import ch.heigvd.amt.mvcdemo.services.ResourceNotFoundException; import ch.heigvd.amt.mvcdemo.services.UserManagerServiceLocal; import java.io.IOException; import java.sql.SQLException; import javax.ejb.EJB; import javax.servlet.ServletExcept...
/* * Copyright © 2011-2012 Philipp Eichhorn * * 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,...
/** * Copyright © 2016-2020 The Thingsboard 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 applicab...
package com.hh.gulimail.member.service.impl; import org.springframework.stereotype.Service; import java.util.Map; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.hh.co...
/** * Copyright (c) 2002-2013 "Neo Technology," * Network Engine for Objects in Lund AB [http://neotechnology.com] * * This file is part of Neo4j. * * Neo4j 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 Foundati...
package drzhark.mocreatures.client.model; import drzhark.mocreatures.MoCTools; import drzhark.mocreatures.entity.passive.MoCEntityWyvern; import net.minecraft.client.model.ModelBase; import net.minecraft.client.model.ModelRenderer; import net.minecraft.entity.Entity; import net.minecraft.util.math.MathHelper; import n...
package de.jochenchrist.service.todo; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; import javax.validation.constraints.NotNull; import java.util.Date; import java.util.UUID; @Document(collection = "tasks") public class Task { @Id private UUID ...
package com.yunbao.common.custom; import android.content.Context; import android.support.annotation.Nullable; import android.support.v7.widget.AppCompatImageView; import android.util.AttributeSet; import android.view.animation.Animation; import android.view.animation.RotateAnimation; /** * Created by cxf on 2018/11/...
package co.com.ideafalaz.activityintent; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will execute on...
/** * 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...
/* +-------------------------------------------------------------------------- | mtons [#RELEASE_VERSION#] | ======================================== | Copyright (c) 2014, 2015 mtons. All Rights Reserved | http://www.mtons.com | +--------------------------------------------------------------------------- */ pac...
/* MIT License Copyright (c) 2019 Vincenzo Mazzeo 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, publish...
/* Part of the "Spartan Blog"; mutate the rest / but leave this line as is */ package il.org.spartan.collections;
/* * Copyright 2016 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. package com.azure.storage.file; import com.azure.core.util.Configuration; import com.azure.storage.file.models.ShareProperties; import com.azure.storage.file.models.FileStorageException; import java.util.UUID; /** * Samp...
package com.feihua.framework.base.mapper; import com.feihua.framework.base.modules.function.po.BaseFunctionResourceDataScopeDefinePo; import feihua.jdbc.api.dao.CrudDao; /** * This class was generated by MyBatis Generator. * @author yangwei 2018-03-19 14:24:58 */ public interface BaseFunctionResourceDataScopeDefin...
package braco.client; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for hasArmsResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. ...
package com.docusign.esign.model; import java.util.Objects; import java.util.Arrays; import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonValue; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiMod...