text
stringlengths
7
995k
package org.hl7.fhir.dstu3.model; /* 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 copyright noti...
class A { } class SatArrayAssign { public static void main(String[] args) { int size=10; int int_array[]=new int[size]; for(int i=0; i<size; i++) int_array[i]=i; // assert int_array[7] == 7; A what_not_array[]=new A[size]; assert what_not_array.length == size; } }
/*- * ============LICENSE_START======================================================= * openECOMP : SDN-C * ================================================================================ * Copyright (C) 2019 AT&T Intellectual Property. All rights * reserved. * ===============================================...
/* * eGov SmartCity eGovernance suite aims to improve the internal efficiency,transparency, * accountability and the service delivery of the government organizations. * * Copyright (C) 2017 eGovernments Foundation * * The updated version of eGov suite of products as by eGovernments Foundation * ...
package org.hl7.fhir.r4.model.codesystems; /* 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 copyr...
package mb.spectrum.view; import static mb.spectrum.Utils.map; import java.util.ArrayList; import java.util.List; import javafx.beans.binding.Bindings; import javafx.scene.Node; import javafx.scene.paint.Color; import javafx.scene.shape.LineTo; import javafx.scene.shape.MoveTo; import javafx.scene.shape.Path; import...
package org.springframework.osgi.iandt.cardinality0to1; import java.io.FilePermission; import java.util.ArrayList; import java.util.List; import java.util.PropertyPermission; import org.osgi.framework.AdminPermission; import org.osgi.framework.Bundle; import org.osgi.framework.BundleException; import org.osgi.framewo...
package com.plivo.plivosimplequickstart; import android.util.Log; import com.plivo.endpoint.Endpoint; import com.plivo.endpoint.EventListener; import com.plivo.endpoint.Incoming; import com.plivo.endpoint.Outgoing; import java.util.HashMap; public class PlivoBackEnd implements EventListener { private static fin...
/* * Created on Oct 26, 2010 * * 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 writ...
package org.nil.gramana.dialogs; import android.app.AlertDialog; import android.app.Dialog; import android.content.DialogInterface; import android.content.Intent; import android.content.res.Resources; import android.os.Bundle; import android.support.v4.app.DialogFragment; import org.nil.gramana.R; import org.nil.grama...
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; // 100/100 import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; public class _04_Royal_Accounting { public static void main(String[] args) throws IOException { BufferedReader in = ne...
/** * 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.opiagile.opibot.api.services; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; import java.util.Optional; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.BDDMockito; import org.mockito.Mockito; import org.springfr...
/******************************************************************************* * 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...
package cloud.jbus.db.bean; import fw.jbiz.db.ZEntity; public abstract class BaseZEntity extends ZEntity { }
package com.warrencrasta.fantasy.yahoo.dto.external.yahoo; import com.fasterxml.jackson.annotation.JsonAlias; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import lombok.Data; @Data @JsonIgnoreProperties(ignoreUnknown = true) public class StatWinnerDTO { @JsonAlias("stat_id") private String statI...
package com.spareyaya.visualsortation; import androidx.appcompat.app.AppCompatActivity; import androidx.appcompat.widget.AppCompatSpinner; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.AdapterView; import android.widget.Button; import android.widget.Toast; import ...
package ro.msg.learning.shop.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Profile; import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuil...
package net.riyaya.battleassist.Utils; public class WorldBorderStatus { private int shrinkageStartSeconds; private int waitSeconds; private int size; public int getSize() { return size; } public WorldBorderStatus setSize(int size) { this.size = size; return this; ...
package com.productImg.controller; import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import javax.naming.Context; import javax.naming.InitialContext; import...
package org.apache.dubbo.rpc; import org.apache.dubbo.common.extension.ExtensionLoader; public class Protocol$Adaptive implements org.apache.dubbo.rpc.Protocol { public org.apache.dubbo.rpc.Exporter export(org.apache.dubbo.rpc.Invoker arg0) throws org.apache.dubbo.rpc.RpcException { if (arg0 == null) thro...
package com.example.coolweather; import android.app.ProgressDialog; import android.content.Intent; import android.os.Bundle; import android.support.v4.app.Fragment; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; i...
/** * 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) 2021. MachineMuse, Lehjr * 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 copyright notice, this * lis...
package com.github.houbb.sisyphus.springboot.starter.config; import com.github.houbb.sisyphus.spring.annotation.EnableRetry; import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; import org.springframework.context.annotation.Configuration; /** * 重试自动配置 * @author binbin.hou * @since 0.0.9 */ ...
package com.microsoft.graph.snippets; import com.microsoft.identity.client.AuthenticationResult; import com.microsoft.identity.client.exception.MsalException; interface MSALAuthenticationCallback { void onSuccess(AuthenticationResult authenticationResult); void onError(MsalException exception); void onErr...
/* * 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 ...
abstract class Issue1587 { static class MyObject {} interface Six<T extends Six<T, R>, R> { T d(); Iterable<R> q(); } abstract Six<?, MyObject> e(Object entity); public void method(MyObject one) { g(e(one).d().q()); } abstract Iterable<MyObject> g(Iterable<MyObject> r); interface Class...
/* * Copyright 2004-2013 H2 Group. Multiple-Licensed under the H2 License, * Version 1.0, and under the Eclipse Public License, Version 1.0 * (http://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.index; import org.h2.message.DbException; import org.h2.result.ResultInterface; i...
package com.microsoft.bingads.examples.v10; import java.rmi.*; import java.util.ArrayList; import java.util.Calendar; import com.microsoft.bingads.*; import com.microsoft.bingads.v10.campaignmanagement.*; import static com.microsoft.bingads.examples.v10.AdExtensions.authorizationData; import static com.microsoft.bing...
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0. package com.amazonaws.s3.model; import java.lang.String; import java.util.Set; import java.util.stream.Collectors; import java.util.stream.Stream; import software.amazon.aws.sdk.crt.annotations.Generated; @Ge...
package com.hncboy.tmall.web; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; /** * Created by IntelliJ IDEA. * User: hncboy * Date: 2018/11/1 * Time: 19:23 */ @Controller public class AdminPageController { @GetMapping(value = "/admin") public...
package com.ardublock.translator.block.insectbot; import com.ardublock.translator.Translator; public class InsectBotUtil { public static void setupEnv(Translator translator) { translator.addHeaderFile("Servo.h"); translator.addHeaderFile("InsectBot.h"); translator.addDefinitionCommand("InsectBot insect;");...
package com.brandongogetap.stickyheaders; import android.content.Context; import androidx.annotation.Nullable; import androidx.recyclerview.widget.LinearLayoutManager; import androidx.recyclerview.widget.RecyclerView; import android.view.View; import com.brandongogetap.stickyheaders.ViewRetriever.RecyclerViewRetrieve...
package com.emistoolbox.common.model.analysis.impl; import java.io.Serializable; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; import com.emistoolbox.common.model.analysis.EmisAggregatorDef; import com.emistoolbox.common.model.analysis.EmisAggregatorList; import com.e...
/* * Copyright 2019 Ramon. * * 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 w...
/* * Copyright (c) 2020, Siraz <https://github.com/Sirazzz> * 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, thi...
package com.synopsys.integration.alert.common.workflow; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import java.util.Optional; import java.util.concurrent.TimeUnit; import org.junit...
// Copyright 2017 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...
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
package cn.com.newland.nle_sdk.responseEntity; /** * Created by marco on 2017/8/22. * 网关对应的传感器列表item */ public class SensorInfo { private String ApiTag; private int Groups; private int Protocol; private String Name; private String CreateDate; private int TransType; private int DataType;...
/* * Copyright 2014, The OpenNMS Group * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. You may obtain * a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
/** * Copyright 2013 Canada Health Infoway, 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 applicab...
package com.gerson.droidcafeadaptative.ui.ui_00_home; import androidx.annotation.NonNull; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentStatePagerAdapter; import androidx.lifecycle.ViewModelProviders; import com.gerson.droidcafeadaptative.mod...
package org.activiti.spring.conformance.set3; import org.activiti.api.model.shared.event.RuntimeEvent; import org.activiti.api.process.model.ProcessInstance; import org.activiti.api.process.model.builders.ProcessPayloadBuilder; import org.activiti.api.process.model.events.BPMNActivityEvent; import org.activiti.api.pro...
/* * Copyright 2018 JDCLOUD.COM * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http:#www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in...
/* * Copyright 2002-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 * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
package com.snorlon.sevestralkingdoms.GameComponents; import com.snorlon.sevestralkingdoms.GameTools.Core; import com.snorlon.sevestralkingdoms.GameTools.InterfaceElement; //holds basic game config info public class Config { public final static int DIFFICULTY_EASY = 0; public final static int DIFFICULTY_MEDIUM = 1;...
package net; public class Player { private final static int DEFAULT_LIVES = 3; private int id; private String name; private float posX = 0; private int lives = DEFAULT_LIVES; private int coins = 0; public boolean playing; public Player(int id, String name) { this.id = id; this.name = name; this....
package com.baiyi.opscloud.datasource.kubernetes.convert; import com.baiyi.opscloud.core.util.TimeUtil; import com.baiyi.opscloud.core.util.enums.TimeZoneEnum; import com.baiyi.opscloud.domain.builder.asset.AssetContainer; import com.baiyi.opscloud.domain.builder.asset.AssetContainerBuilder; import com.baiyi.opscloud....
package br.com.zupacademy.proposta.proposta.cartao; import br.com.zupacademy.proposta.proposta.biometria.Biometria; import br.com.zupacademy.proposta.proposta.cartao.aviso.Aviso; import br.com.zupacademy.proposta.proposta.cartao.bloqueio.Bloqueio; import br.com.zupacademy.proposta.proposta.cartao.carteira.Carteira; im...
package memap.components.prototypes; import com.google.gson.Gson; import akka.basicMessages.AnswerContent; import akka.basicMessages.RequestContent; import akka.timeManagement.CurrentTimeStepSubscriber; import behavior.BehaviorModel; import lpsolve.LpSolveException; import memap.controller.TopologyController; import ...
package apimodels; import com.fasterxml.jackson.annotation.*; import java.util.Set; import javax.validation.*; import java.util.Objects; import javax.validation.constraints.*; /** * PipelinelatestRunartifacts */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaPlayFrameworkCodegen", date =...
/** * Copyright (c) 2014-2015, Thindeck.com * 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 list of condit...
/** * Copyright 2016 LinkedIn Corp. 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 applica...
package com.smartcar.sdk; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.json.*; import okhttp3.RequestBody; /** * Class encompassing optional arguments for Smartcar Vehicle general purpose requests */ public final class SmartcarVehicleRequest { ...
package eu.vargapeter.instrumentcatalog.services.impl; import eu.vargapeter.instrumentcatalog.config.Translator; import eu.vargapeter.instrumentcatalog.services.ExcelCheck; import eu.vargapeter.instrumentcatalog.services.ImportFromFile; import eu.vargapeter.instrumentcatalog.services.InstrumentsImport; import eu.varg...
/* * Copyright (c) Facebook, Inc. and its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applic...
package com.servlet.example.interceptors; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; /** * 添加自定义拦截器 * @author yangzhiguo 2017/10/24. */ ...
package org.infinispan.interceptors; import java.util.concurrent.atomic.AtomicLong; import javax.transaction.Status; import javax.transaction.SystemException; import javax.transaction.Transaction; import org.infinispan.Cache; import org.infinispan.commands.CommandsFactory; import org.infinispan.commands.VisitableComm...
/* * Hibernate Validator, declare and validate application constraints * * License: Apache License, Version 2.0 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>. */ package org.hibernate.validator.ap.testmodel.inheritedvalidator; import java.lang.annotation.Document...
package org.sandwich.litemall.core.notify; import cn.binarywang.wx.miniapp.api.WxMaService; import cn.binarywang.wx.miniapp.bean.WxMaTemplateMessage; import org.sandwich.litemall.db.domain.LitemallUserFormid; import org.sandwich.litemall.db.service.LitemallUserFormIdService; import org.springframework.beans.factory.an...
package net.minecord.xoreboardutil.bukkit.event; import lombok.Getter; import lombok.Setter; import net.minecord.xoreboardutil.bukkit.XoreBoard; import org.jetbrains.annotations.NotNull; @Getter public final class XoreBoardSendPacketEvent extends XoreBoardEvent implements org.bukkit.event.Cancellable { private @...
/* * Copyright 2019-2020 Hippo B.V. (http://www.onehippo.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 a...
/* * Copyright 2017 - 2021 Whole Bean Software, LTD. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by a...
package genericsAndCollections.collections.list; public class Vectors { /** * Old way to use as a List; * It's thread safe (but now there'a {@link CopyOnWriteArrayList}); * Stack inherits it; */ }
package com.github.kneelawk.cpcontrol; import java.io.File; import java.util.Collection; import java.util.HashSet; import java.util.Set; /** * ClassPath - Used for keeping track of all the jars and native directories * that are being added to the classpath. * * @author Kneelawk * */ public class ClassPath { p...
/* * Copyright 2019, Momentum Ideas Co. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
import java.util.*; /** * Creates and maintains a "field" for the rabbit and fox, and sets * up a number of methods to be used by animals. This class, rather * than the Animal class, is in charge of letting animals move and * look around--this makes it harder for an animal to "cheat" by * knowing things it should...
/* Copyright 2002-2021 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...
package org.arquillian.cube.docker.impl.client; import org.arquillian.cube.docker.impl.util.DockerMachine; import org.jboss.arquillian.core.api.Instance; import org.jboss.arquillian.core.api.annotation.Inject; import org.jboss.arquillian.core.api.annotation.Observes; import org.jboss.arquillian.test.spi.event.suite.Af...
package me.icxd.biblioteka.adapter; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.TextView; import java.util.List; import me.icxd.biblioteka.R; import me.icxd.biblioteka.model.bean....
/* * 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...
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...
/* * 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 org.hl7.fhir.dstu3.model.codesystems; /* 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 co...
package com.kh.onemile.vo; import java.util.Date; import java.util.List; import org.springframework.format.annotation.DateTimeFormat; import org.springframework.web.multipart.MultipartFile; import lombok.Data; //회원정보 + 프로필 이미지 @Data public class MemberJoinVO { private int memberNo; private String email; private ...
/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License; * you may not use this file except in compliance with the Elastic License. */ package org.elasticsearch.xpack.watcher.transport.actions.activate; import or...
package com.javaedge.design.pattern.creational.builder.pre; /** * @author JavaEdge */ public class Test { public static void main(String[] args) { CourseBuilder courseBuilder = new CourseActualBuilder(); Coach coach = new Coach(); coach.setCourseBuilder(courseBuilder); Course co...
package gov.cms.qpp.conversion.util; import gov.cms.qpp.test.helper.HelperContract; class CloneHelperTest implements HelperContract { @Override public Class<?> getHelperClass() { return CloneHelper.class; } }
package co.edu.sena.fundamentals.examples.les07; public class IfElseElevatorTest { public static void main(String args[]) { IfElseElevator myIfElseElevator = new IfElseElevator(); myIfElseElevator.openDoor(); myIfElseElevator.closeDoor(); myIfElseElevator.goDown(); myIfElseEleva...
/** * 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.eamon.eamoneureka; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; @SpringBootApplication @EnableEurekaServer public class EamonEurekaApplication { public...
/** The MIT License (MIT) * Copyright (c) 2016 铭飞科技(mingsoft.net) * 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, c...
/* * * Copyright (C) 2013-2021 Matt Baxter https://kitteh.org * * 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, co...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: tensorflow/core/protobuf/transport_options.proto package org.tensorflow.proto.distruntime; public final class TransportOptions { private TransportOptions() {} public static void registerAllExtensions( com.google.protobuf.ExtensionRegistr...
/** * 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 * distribu...
package com.google.code.pathlet.web.widget; import java.util.List; import java.util.Map; /** * * Response data set for JQGrid one request. * It includes current page number, total page count, total row count and current page rows data. <br/> * It is the customized format to compatible JQGrid receiving JSON whi...
/* * Copyright (c) 2018, Lotto <https://github.com/devLotto> * 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, th...
package org.lanjerry.admin.service.global; import java.util.List; import org.lanjerry.admin.dto.global.CurrentUserLoginDTO; import org.lanjerry.admin.dto.global.CurrentUserPasswordUpdateDTO; import org.lanjerry.admin.dto.global.CurrentUserProfileUpdateDTO; import org.lanjerry.admin.vo.global.CurrentUserInfoVO; import...
/* * Copyright 2018 NEM * * 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 writi...
project class hello { }
/* * Copyright (C) 2016 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 org.jsonbuddy.pojo; import net.bytebuddy.ByteBuddy; import net.bytebuddy.dynamic.DynamicType; import net.bytebuddy.implementation.FixedValue; import net.bytebuddy.implementation.Implementation; import net.bytebuddy.matcher.ElementMatchers; import org.jsonbuddy.JsonNode; import org.jsonbuddy.JsonNull; import or...
/** * 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 m...
package com.atguigu.gulimall.ums.service; import com.baomidou.mybatisplus.extension.service.IService; import com.atguigu.gulimall.ums.entity.MemberLevelEntity; import com.atguigu.gulimall.commons.bean.PageVo; import com.atguigu.gulimall.commons.bean.QueryCondition; /** * 会员等级 * * @author changchen * @email doubl...
/* * 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) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ pa...
/* * Copyright (c) 2011-2017, Peter Abeles. All Rights Reserved. * * This file is part of BoofCV (http://boofcv.org). * * 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...
package org.datacontract.schemas._2004._07.bbs_epayment; 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>Java class for...