text
stringlengths
7
995k
/* * Copyright 2004-2013 the Seasar Foundation and the Others. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required ...
package com.kanta.dietmanager; import java.lang.reflect.Type; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.view.Menu; i...
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE15_External_Control_of_System_or_Configuration_Setting__connect_tcp_21.java Label Definition File: CWE15_External_Control_of_System_or_Configuration_Setting.label.xml Template File: sources-sink-21.tmpl.java */ /* * @description * CWE: 15 External Control of System or ...
package com.google.inject.spi; import com.google.inject.Binding; import com.google.inject.Key; import java.util.Set; public interface ConvertedConstantBinding<T> extends Binding<T>, HasDependencies { T getValue(); TypeConverterBinding getTypeConverterBinding(); Key<String> getSourceKey(); Set<Dependen...
/** * 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.daggerok.spring.batch.model; import com.daggerok.spring.batch.util.Sleep; import lombok.extern.slf4j.Slf4j; import org.springframework.batch.item.ItemWriter; import java.util.List; @Slf4j public class DataWriter implements ItemWriter<Data> { /** * Process the supplied data element. Will not be c...
/* */ package org.apache.commons.collections.iterators; /* */ /* */ import java.util.Iterator; /* */ import java.util.NoSuchElementException; /* */ import org.apache.commons.collections.Predicate; /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* ...
package CSharp.behavior; /*Generated by MPS */ /** * Will be removed after 3.4 * Need to support compilation of the legacy behavior descriptors before the language is rebuilt * This interface is not involved in the actual method invocation */ @Deprecated public interface IParameter_modifier_BehaviorDescriptor { ...
/* * Copyright (C) 2010-2020 Evolveum and contributors * * This work is dual-licensed under the Apache License 2.0 * and European Union Public License. See LICENSE file for details. */ package com.evolveum.midpoint.web.page.error; import java.text.SimpleDateFormat; import java.util.Date; import com.evolveum.midp...
/* * Copyright 2019, EnMasse authors. * License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html). */ package io.enmasse.controller; import io.fabric8.kubernetes.client.KubernetesClientException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import io.enmasse.add...
/* * JBoss, Home of Professional Open Source * Copyright 2010, Red Hat, Inc., and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this fi...
/* * Copyright 2015-present Facebook, 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...
/* * Copyright 2014-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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
package yyl.springboot.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.ann...
/* * Copyright (c) 2018 - Manifold Systems LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable ...
package com.kelvinconnect.discord.command.stando; import com.kelvinconnect.discord.command.stando.filter.EveryoneFilter; import com.kelvinconnect.discord.command.stando.filter.SlurFilter; import com.kelvinconnect.discord.command.stando.filter.StandoFilter; import com.kelvinconnect.discord.persistence.KCBotDatabase; im...
package proyecto_dos; import java.lang.ArrayIndexOutOfBoundsException; import java.util.Scanner; import java.time.LocalDateTime; import java.time.Duration; import java.io.FileWriter; import java.io.IOException; import java.lang.Math; public class Principal { private static String comandos = " ...
/* * 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 ...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package it.octavianionel.designsupportlibrarysample; /** * Created by octavian on 7/28/15. */ public class CardModel { private int identifier; private String title; public CardModel(int identifier, String title) { this.identifier=identifier; this.title =title; } public int getI...
package com.bluebrim.layout.impl.client.command; import com.bluebrim.layout.impl.shared.view.*; import com.bluebrim.transact.shared.*; public abstract class CoShapePageItemCommand extends CoUndoableCommand { protected CoShapePageItemView m_targetView; protected CoShapePageItemCommand( String name ) { super( nam...
package com.sunyard.core.S120030027; 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>RspHeaderType complex type的 Java 类。 * * <p>以下模式片段指定包含在此类中的预期内容。 * * <pre> * &l...
import java.util.ArrayList; public class Board { char [][] grid = new char [3][3]; int score; public char[][] get(){ return grid; } Board (){ for (int i=0;i<3;i++) { for (int j=0;j<3;j++) { this.grid[i][j]='-'; } } } public Boolean move (int x , int y ,char a) { char [][] q =get(); if...
/* * Copyright 1999-2019 Seata.io 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 l...
package com.awgp.org.apigateway; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class ApiGatewayApplicationTests { @Test void contextLoads() { } }
package fr.minuskube.inv.content; import fr.minuskube.inv.ClickableItem; import fr.minuskube.inv.SmartInventory; import java.util.HashSet; import java.util.Optional; import java.util.Set; public interface SlotIterator { enum Type { HORIZONTAL, VERTICAL } Optional<ClickableItem> get(); ...
/* * Copyright DataStax, 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 wri...
/* * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not u...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package org.bdparser; import org.bdparser.functions.*; import org.bdparser.operations.*; /** * A tokenizer using all default operations, functions and constants defined in this library */ public class DefaultTokenizer extends TokenizerImpl { public DefaultTokenizer() { addOperation("+", new Add()); ...
/* * Copyright 2015-present Open Networking Foundation * * 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 appli...
/* * 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...
/* * Copyright (c) 2008-2016 Computer Network Information Center (CNIC), Chinese Academy of Sciences. * * This file is part of Duckling 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 L...
package Resources; import java.lang.reflect.Field; import org.json.JSONException; import org.json.JSONObject; public class Resource { public JSONObject getAsJSON(){ JSONObject json_obj = new JSONObject(); //All of the public attributes of the class in question for (Field f : getClass().getDeclaredFields()...
package com.datbear; import net.runelite.client.config.Config; import net.runelite.client.config.ConfigGroup; import net.runelite.client.config.ConfigItem; import java.awt.*; import net.runelite.client.config.ConfigSection; @ConfigGroup("guardiansOfTheRiftHelper") public interface GuardiansOfTheRiftHelperConfig exte...
package fileManager; import javax.swing.*; import java.awt.*; import java.io.*; import java.util.*; public class AnagraFileManager implements FileManager { //singleton class private static AnagraFileManager instance; public static synchronized AnagraFileManager getInstance() { if (instance == nu...
package com.levien.synthesizer.core.model.rawaudio; public interface PcmAdsrSynthOutL2Cache { }
package com.vimukti.accounter.web.client.ui.banking; import com.google.gwt.user.client.Window; import com.vimukti.accounter.web.client.core.ClientAccount; import com.vimukti.accounter.web.client.core.ClientFinanceDate; import com.vimukti.accounter.web.client.core.PaginationList; import com.vimukti.accounter.web.client...
package hr.vspr.dpasic.socials.rest.config; import java.io.IOException; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.http.HttpServl...
package com.creditease.adx.clockwork.common.util; import com.creditease.adx.clockwork.common.enums.TaskTriggerModel; import com.creditease.adx.clockwork.common.pojo.TbClockworkTaskPojo; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.util.List; /** * @ Author :XuanDongTang * @ Date :...
package com.folioreader.model; public class EditNoteEvent { public HighlightImpl highLight; public HighLight.HighLightAction type; }
/**************************************************************************** Copyright (c) 2012-2013 cocos2d-x.org http://www.cocos2d-x.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 withou...
/* * Copyright (c) 2021, 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.apac...
/* * 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 * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by ap...
package com.company.svobuggageclaim.screen.country; import io.jmix.ui.screen.*; import com.company.svobuggageclaim.entity.Country; @UiController("Country.edit") @UiDescriptor("country-edit.xml") @EditedEntityContainer("countryDc") public class CountryEdit extends StandardEditor<Country> { }
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package hr.trio.realestatetracker.service; import hr.trio.realestatetracker.model.Role; import hr.trio.realestatetracker.model.User; public interface CurrentUserService { String getLoggedInUserUsername(); Role getLoggedInUserRole(); User getLoggedInUser(); boolean isLoggedInUserAdmin(); boole...
package org.crazyit.gps; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(Applicati...
package com.adaptris.core.jcsmp.solace.auth; import static org.junit.Assert.assertEquals; import static org.junit.Assert.fail; import org.junit.After; import org.junit.Before; import org.junit.Test; import com.adaptris.core.CoreException; import com.solacesystems.jcsmp.JCSMPProperties; public class BasicAuthenticat...
package learn.spring.boot.admin.server; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class ServerApplicationTests { @Test pu...
package mirror.com.android.internal.telephony; import android.os.IBinder; import android.os.IInterface; import mirror.RefClass; import mirror.MethodParams; import mirror.RefStaticMethod; public class IPhoneSubInfo { public static Class<?> TYPE = RefClass.load(IPhoneSubInfo.class, "com.android.internal.telephon...
/** * Copyright (c) 2004-2005, Regents of the University of California * 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 ...
import javax.swing.*; import java.lang.Integer; import java.awt.*; import java.io.DataInputStream; import java.io.FileInputStream; import java.io.IOException; import java.util.*; /** * La classe <code>Grille</code> est utilisee pour creer un certain type de grille. * @version 3.0 * @author Jean-Baptiste SANCHEZ, Ma...
/* * Copyright (c) 2016, University of Oslo * * 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 * list of condition...
/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.envers.test.integration.onetoone.bidirectional.primarykeyjoin...
package com.jay.example.fragmentforhost; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; public class Fragment3 extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup cont...
/* * 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...
/* * 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.ml.dataframe; import org.elasticsearch.Versio...
package com.javadevjournal.configserver; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; @SpringBootApplication @EnableConfigServer public class ConfigserverApplication { public...
package com.deep.api.resource; import com.deep.api.response.Response; import com.deep.api.response.Responses; import com.deep.domain.service.DisinfectionArchivesService; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.bind.annotation.*; import javax.annotation.Resource; import j...
package io.automatiko.engine.services.uow; import io.automatiko.engine.api.event.EventManager; import io.automatiko.engine.api.uow.UnitOfWork; import io.automatiko.engine.api.uow.UnitOfWorkFactory; import io.automatiko.engine.api.uow.UnitOfWorkManager; import io.automatiko.engine.services.event.impl.BaseEventManager; ...
// Copyright 2018 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writi...
package org.kairosdb.datastore.cassandra; import com.datastax.driver.core.BatchStatement; import com.datastax.driver.core.BoundStatement; import com.datastax.driver.core.ConsistencyLevel; import com.datastax.driver.core.Host; import com.datastax.driver.core.Statement; import com.datastax.driver.core.policies.LoadBalan...
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
package com.github.renszarv.algobase.graph; import static org.junit.Assert.*; import org.junit.Test; public class GraphTest { @Test public void testMinimumPath1() { Graph g = buildSimpleGraph(); int[] minimumPath =g.probe(Minimum.path()); String path = g.describe(minimumPath); int score = g.walk(min...
package hu.flowacademy.musicstore.DTO; import hu.flowacademy.musicstore.Model.Genre; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import org.springframework.stereotype.Component; import java.time.LocalDate; @Data @NoArgsConstructor @AllArgsConstructor @Component public class...
/** * */ package net.freecoder.common.query.impl; import java.util.HashMap; import java.util.Map; /** * Copy from Activiti * * @author Tom Baeyens * @author JiTing */ public class Direction { private static final Map<String, Direction> directions = new HashMap<String, Direction>(); public static final Di...
/** * The MIT License * * Copyright (c) 2009-2019 PrimeTek * * 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 com.P4; public class Reference { public static final String MOD_ID = "obco"; public static final String MOD_NAME = "ObsidiCode"; public static final String VERSION = "0.1"; public static final String CLIENT_PROXY_CLASS = "com.P4.proxy.ClientProxy"; public static final String SERVER_PROXY_CL...
/* * Copyright 2016-2020 Crown Copyright * * 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 com.atguigu.gmall.pms.config; import com.baomidou.mybatisplus.extension.plugins.PaginationInterceptor; import com.baomidou.mybatisplus.extension.plugins.pagination.optimize.JsqlParserCountOptimize; import org.mybatis.spring.annotation.MapperScan; import org.springframework.context.annotation.Bean; import org.s...
// Licensed to the Software Freedom Conservancy (SFC) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The SFC licenses this file // to you under the Apache License, Version 2.0 (the // "License"); you m...
package com.sensirion.smartgadget.utils; import android.annotation.SuppressLint; import android.content.Context; import android.content.SharedPreferences; import android.preference.PreferenceManager; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.util.Log; import...
package professions; public class Builder extends Engineer { public boolean toBuild(House house) { return true; } }
/* * 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) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you 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.or...
/* * This file is part of Baritone. * * Baritone 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 the License, or * (at your option) any later version. * * Baritone is distrib...
/** * Copyright (c) 2020 Team 3555 * * 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...
package com.victor.zxing.library.zxing.view; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Point; import android.os.Handler; import android.util.Log; import android.view.SurfaceHolder; import android.view.SurfaceView; import com.google.zxing.Result; import com.victor.zxing.li...
/* * Copyright © 2020 Mark Raynsford <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 PROVID...
package ui.controller; import bll.service.ChatService; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import...
package com.koch.ambeth.orm20.independent.a3b2a; /*- * #%L * jambeth-test * %% * Copyright (C) 2017 Koch Softwaredevelopment * %% * 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:/...
package org.tool.c.app.entity; import java.util.Objects; public class Scope { private String name; private Condition condition; public void setName(String name) { this.name = name; } public String getName() { return name; } public void setCondition(Condition condition)...
/* * Copyright 2019 Arcus Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
/* * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0 * (the “License”). You may not use this work except in compliance with the License, which is * available at www.apache.org/licenses/LICENSE-2.0 * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDI...
package org.protempa; /* * #%L * Protempa Framework * %% * Copyright (C) 2012 - 2015 Emory University * %% * 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...
/* * Copyright 2012-2018 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.mobadara.rick.app2.views; import com.example.emobadaragaminglib.Base.Game; import com.example.emobadaragaminglib.Base.Screen; import com.example.emobadaragaminglib.Components.Sprite; import com.mobadara.rick.app2.assets.Hero; import com.mobadara.rick.app2.sprites.Dummy; public class Level1 extends Screen ...
package com.loginair.gshopping.ui.fragment; import com.lidroid.xutils.db.converter.IntegerColumnConverter; import java.util.HashMap; /** * Created by PineChang on 2017/2/15. */ //用工厂模式的好处是,懒加载,以及不会重复创建,可以复用原来的已经创建好的Fragment public class FragmentFactory { FragmentFactory private static HashMap<Integer,BaseFrag...
/* * 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 ir.masterz.mansour.ez.serverapi; import com.google.gson.JsonObject; import ir.masterz.mansour.ez.serverapi.callback.CallBackRequestBuilt; import ir.masterz.mansour.ez.serverapi.callback.SuccessCallback; /** * Created by Sora on 4/22/2017. */ public class RequestBuilder { private final Request request...
package biblioteca; import java.util.Scanner; public class Principal { public static void main(String[] args) {//Classe Movimentação do diagrama UML new CriaDiretorios(); Autores[] exemplo = new Autores[1]; exemplo[0] = new Autores("JJ. James"); Exemplar l0 = new Exemplar(010101, "7 advogad...
/* * Gwt Logger Library * * * * * * */ package com.mizore.gwt.logging.client.report.view; import com.google.gwt.dom.client.Style.TextAlign; import com.google.gwt.dom.client.Style.Unit; import com.google.gwt.event.dom.client.HasClickHandlers; import com.google.gwt.event.logical.shared.HasCloseHandlers; im...
/* * Copyright Red Hat, Inc. and/or its affiliates * and other contributors as indicated by the @author tags and * the COPYRIGHT.txt file distributed with this work. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may ob...
/* * Jitsi, the OpenSource Java VoIP and Instant Messaging client. * * Distributable under LGPL license. See terms of license at gnu.org. */ package org.jivesoftware.smackx.thumbnail; import org.jivesoftware.smack.packet.ExtensionElement; import org.jivesoftware.smack.packet.XmlEnvironment; import org.jivesoftware...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: OrganizationUser.proto package Diadoc.Api.Proto; public final class OrganizationUserProtos { private OrganizationUserProtos() {} public static void registerAllExtensions( com.google.protobuf.ExtensionRegistry registry) { } public int...
/** * 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.scn.community.htmlgenerator; import org.scn.community.utils.Helpers; public class ZtlParameter { private String paramLine; private String docu; private final String type; final String name; boolean isOptional; public ZtlParameter(String paramLine) { this.paramLine = paramLine.trim(); if (...
licensed apache software foundation asf contributor license agreements notice file distributed work additional copyright ownership asf licenses file apache license version license file compliance license copy license http apache org licenses license required applicable law agreed writing software distributed license di...
package com.skeqi.mes.pojo.project; import java.util.Date; /** * 安灯故障父类 * @author : FQZ * @Package: com.skeqi.mes.pojo.project * @date : 2020年4月20日 下午1:25:17 */ public class CMesAndonFaultT { private String lineName; private String stationName; private String lossType; private Integer pages; public In...