index
int64
repo_id
string
file_path
string
content
string
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/DateAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.xml.bind.annotation.adapters.XmlAdapter; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; /** * @author "Federico De Faveri defaveri@gmail.com" */ pub...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/DegreeUnitAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import javax.xml.bind.annotation.adapters.XmlAdapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.github.fedy2.weather.data.unit.DegreeUnit; /** * Degree unit adapter: f for Fahrenheit or c for Celsius (character) * @author "Fed...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/DistanceUnitAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import javax.xml.bind.annotation.adapters.XmlAdapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.github.fedy2.weather.data.unit.DistanceUnit; /** * Units for distance adapter, mi for miles or km for kilometers. * @author "Feder...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/FloatAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import javax.xml.bind.annotation.adapters.XmlAdapter; /** * @author "Federico De Faveri defaveri@gmail.com" */ public class FloatAdapter extends XmlAdapter<String, Float> { /** * {@inheritDoc} */ @Override public String marshal(Floa...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/IntegerAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import javax.xml.bind.annotation.adapters.XmlAdapter; /** * @author "Federico De Faveri defaveri@gmail.com" */ public class IntegerAdapter extends XmlAdapter<String, Integer> { /** * {@inheritDoc} */ @Override public String marshal(Int...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/PressureUnitAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import javax.xml.bind.annotation.adapters.XmlAdapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.github.fedy2.weather.data.unit.PressureUnit; /** * Units of barometric pressure adapter, in for pounds per square inch or mb for mi...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/RFC822DateAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.xml.bind.annotation.adapters.XmlAdapter; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; /** * @author "Federico De Faveri defaveri@gmail.com" */ pub...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/SpeedUnitAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import javax.xml.bind.annotation.adapters.XmlAdapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.github.fedy2.weather.data.unit.SpeedUnit; /** * @author "Federico De Faveri defaveri@gmail.com" * */ public class SpeedUnitAdapte...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/TimeAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import java.util.regex.Matcher; import java.util.regex.Pattern; import javax.xml.bind.annotation.adapters.XmlAdapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.github.fedy2.weather.data.unit.Time; import com.github.fedy2.weather...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/binding/adapter/WeekDayAdapter.java
/** * */ package com.github.fedy2.weather.binding.adapter; import javax.xml.bind.annotation.adapters.XmlAdapter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.github.fedy2.weather.data.unit.WeekDay; /** * @author "Federico De Faveri defaveri@gmail.com" * */ public class WeekDayAdapter ex...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Astronomy.java
/** * */ package com.github.fedy2.weather.data; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import com.github.fedy2.weather.binding.adapter.TimeAdapter; import com.github.fedy2.weather.data.unit.Time; ...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Atmosphere.java
/** * */ package com.github.fedy2.weather.data; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import com.github.fedy2.weather.binding.adapter.BarometricPressureStateAdapter; import com.github.fedy2.weath...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Channel.java
/** * */ package com.github.fedy2.weather.data; import java.util.Date; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import com.github.fedy2.weather.binding.Constants; ...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Condition.java
/** * */ package com.github.fedy2.weather.data; import java.util.Date; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import com.github.fedy2.weather.binding.adapter.RFC822DateAdapter; /** * Weather co...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Forecast.java
/** * */ package com.github.fedy2.weather.data; import java.util.Date; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import com.github.fedy2.weather.binding.adapter.DateAdapter; import com.github.fedy2....
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Image.java
/** * */ package com.github.fedy2.weather.data; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; /** * @author "Federico De Faveri defaveri@gmail.com" * */ @XmlRootElement public class Image { /** * The title of the image, for example "Yahoo! Weather". */ @Xm...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Item.java
/** * */ package com.github.fedy2.weather.data; import java.util.Date; import java.util.List; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import com.github.fedy2.weather.binding.Constants; import com.gi...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Location.java
/** * */ package com.github.fedy2.weather.data; import javax.xml.bind.annotation.*; /** * Weather location. * @author "Federico De Faveri defaveri@gmail.com" */ @XmlRootElement public class Location { /** * City name. */ @XmlAttribute private String city; /** * State, territory, or region, if give...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Rss.java
/** * */ package com.github.fedy2.weather.data; 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.XmlRootElement; import javax.xml.bind.annotation.XmlSeeAlso; /** *...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Units.java
/** * */ package com.github.fedy2.weather.data; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import com.github.fedy2.weather.binding.adapter.DegreeUnitAdapter; import com.github.fedy2.weather.binding.ad...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Wind.java
/** * */ package com.github.fedy2.weather.data; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import com.github.fedy2.weather.binding.adapter.FloatAdapter; import com.github.fedy2.weather.binding.adapter...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/Wrapper.java
/** * */ package com.github.fedy2.weather.data; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAnyElement; import javax.xml.bind.annotation.XmlRootElement; /** * List wrapper. * @author "Federico De Faveri defaveri@gmail.com" */ @XmlRootElement public class Wrapper<T> { ...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/unit/BarometricPressureState.java
/** * */ package com.github.fedy2.weather.data.unit; /** * Barometric pressure states. * @author "Federico De Faveri defaveri@gmail.com" */ public enum BarometricPressureState { /** * Steady. */ STEADY, /** * Rising. */ RISING, /** * Falling. */ FALLING; }
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/unit/DegreeUnit.java
/** * */ package com.github.fedy2.weather.data.unit; /** * Units for distance. * @author "Federico De Faveri defaveri@gmail.com" */ public enum DegreeUnit { /** * Fahrenheit. */ FAHRENHEIT, /** * Celsius. */ CELSIUS; }
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/unit/DistanceUnit.java
/** * */ package com.github.fedy2.weather.data.unit; /** * Distance unit. * @author "Federico De Faveri defaveri@gmail.com" */ public enum DistanceUnit { /** * Miles. */ MI, /** * Kilometers. */ KM; }
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/unit/PressureUnit.java
/** * */ package com.github.fedy2.weather.data.unit; /** * Units of barometric pressure. * @author "Federico De Faveri defaveri@gmail.com" */ public enum PressureUnit { /** * Pounds per square inch. */ IN, /** * Millibars. */ MB; }
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/unit/SpeedUnit.java
/** * */ package com.github.fedy2.weather.data.unit; /** * Units of speed. * @author "Federico De Faveri defaveri@gmail.com" */ public enum SpeedUnit { /** * Miles per hour. */ MPH, /** * Kilometers per hour. */ KMH; }
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/unit/Time.java
/** * */ package com.github.fedy2.weather.data.unit; /** * @author "Federico De Faveri defaveri@gmail.com" * */ public class Time { private int hours; private int minutes; private TimeConvention convention; /** * @param hours * @param minutes * @param convention */ public Time(int hours, int min...
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/unit/TimeConvention.java
/** * */ package com.github.fedy2.weather.data.unit; /** * Time convention. * @author "Federico De Faveri defaveri@gmail.com" * */ public enum TimeConvention { /** * ante meridiem (a.m., English: "before midday") */ AM, /** * post meridiem (p.m., English: "after midday") */ PM; }
0
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data
java-sources/at/crea-doo/util/yahoo-weather-java-api/2.0.0/com/github/fedy2/weather/data/unit/WeekDay.java
package com.github.fedy2.weather.data.unit; /** * @author "Federico De Faveri defaveri@gmail.com" */ public enum WeekDay { MON, TUE, WED, THU, FRI, SAT, SUN; }
0
java-sources/at/datenwort/commons/agents-from-service-api/0.3/at/datenwort/commons/agentsFromService
java-sources/at/datenwort/commons/agents-from-service-api/0.3/at/datenwort/commons/agentsFromService/api/AgentConfigurator.java
package at.datenwort.commons.agentsFromService.api; import net.bytebuddy.agent.builder.AgentBuilder; public interface AgentConfigurator { default int getOrder() { return Integer.MAX_VALUE; } AgentBuilder install(AgentBuilder builder); }
0
java-sources/at/datenwort/commons/agents-from-service-impl/0.3/at/datenwort/commons/agentsFromService
java-sources/at/datenwort/commons/agents-from-service-impl/0.3/at/datenwort/commons/agentsFromService/impl/ServiceInstrumentationAgent.java
package at.datenwort.commons.agentsFromService.impl; import at.datenwort.commons.agentsFromService.api.AgentConfigurator; import net.bytebuddy.agent.ByteBuddyAgent; import net.bytebuddy.agent.builder.AgentBuilder; import java.lang.instrument.Instrumentation; import java.util.List; import java.util.ServiceLoader; pub...
0
java-sources/at/datenwort/commons/first-class-property-processor/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-processor/1.17/at/datenwort/firstClass/processor/FirstClassPropertyStructureProcessor.java
package at.datenwort.firstClass.processor; import javax.annotation.processing.AbstractProcessor; import javax.annotation.processing.RoundEnvironment; import javax.annotation.processing.SupportedAnnotationTypes; import javax.lang.model.SourceVersion; import javax.lang.model.element.Element; import javax.lang.model.ele...
0
java-sources/at/datenwort/commons/first-class-property-processor/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-processor/1.17/at/datenwort/firstClass/processor/package-info.java
/** * Copyright (c) 2025 Mario Ivankovits and contributors * * 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...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/CompositeEqualityHandler.java
package at.datenwort.firstClass.runtime; /** * EqualityHandler, which just takes a list of other EqualityHandlers and executing them in their order until * an EqualityHandler returns not null. */ public class CompositeEqualityHandler implements EqualityHandler { private final EqualityHandler[] equalityHandlers;...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/DefaultEqualityHandler.java
package at.datenwort.firstClass.runtime; import java.math.BigDecimal; /** * The default equality handler with special handling for BigDecimal to match if they have the * same value but e.g., different scales. */ public class DefaultEqualityHandler implements EqualityHandler { @Override public Boolean equal...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/DefaultPropertyGetter.java
package at.datenwort.firstClass.runtime; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; /** * Default property getter which might make a field accessible using reflection. */ public class DefaultPropertyGetter implements PropertyGetter { @Ove...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/DefaultPropertySetter.java
package at.datenwort.firstClass.runtime; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; /** * Default property setter which might make a field accessible using reflection. */ public class DefaultPropertySetter implements PropertySetter { @Ove...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/EqualityHandler.java
package at.datenwort.firstClass.runtime; /** * <p>The equality handler is used to determine if two values are the same.</p> * <p>Override by configuring a service using <code>/META-INF/services/at.datenwort.firstClass.runtime.EqualityHandler</code></p> */ public interface EqualityHandler { default int getOrder(...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/FcFirstClassDefinition.java
package at.datenwort.firstClass.runtime; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.function.Function; import java.util.stream.Collectors; import ja...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/FcProperty.java
package at.datenwort.firstClass.runtime; import java.beans.PropertyChangeListener; import java.lang.annotation.Annotation; import java.lang.reflect.AnnotatedType; @SuppressWarnings("unused") public interface FcProperty<T> { FcProperty<?> getParent(); default Class<?> getDeclaringClass() { return null...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/FcPropertyDefinition.java
package at.datenwort.firstClass.runtime; import java.lang.annotation.Annotation; import java.lang.reflect.AnnotatedType; import java.util.ArrayList; import java.util.List; class FcPropertyDefinition<T> implements FcProperty<T> { private List<FcProperty<?>> propertyPath; private final FcProperty<?> parentPrope...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/FcUtils.java
package at.datenwort.firstClass.runtime; import java.beans.PropertyChangeListener; @SuppressWarnings("unused") public final class FcUtils { private FcUtils() { } public static void addPropertyChangeListener(Object object, PropertyChangeListener listener) { if (!(object instanceof PropertySupportI...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/FirstClass.java
package at.datenwort.firstClass.runtime; import java.util.Collection; public interface FirstClass<T> extends Cloneable, FcProperty<T> { <DUMMY> FcProperty<DUMMY> findProperty(String name); default <DUMMY> FirstClass<DUMMY> findFirstClass(String name) { FcProperty<DUMMY> property = findProperty(name);...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/FirstClassConfiguration.java
package at.datenwort.firstClass.runtime; import java.util.ArrayList; import java.util.Comparator; import java.util.Iterator; import java.util.List; import java.util.ServiceLoader; public class FirstClassConfiguration { private FirstClassConfiguration() { } public final static EqualityHandler equalityHand...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/FirstClassFactory.java
package at.datenwort.firstClass.runtime; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; public class FirstClassFactory { private record FirstClassInterfaceHandler(FcProperty<?> property) implements InvocationHandler { @Override public O...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/PropertyChangeLazyInit.java
package at.datenwort.firstClass.runtime; public interface PropertyChangeLazyInit { void propertyChangeLazyInit(); }
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/PropertyChangeListenerEvent.java
package at.datenwort.firstClass.runtime; public interface PropertyChangeListenerEvent { int getOrder(); String getPropertyName(); void fire(); }
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/PropertyChangeListenerEventComparator.java
package at.datenwort.firstClass.runtime; import java.util.Comparator; public class PropertyChangeListenerEventComparator implements Comparator<PropertyChangeListenerEvent> { public final static PropertyChangeListenerEventComparator INSTANCE = new PropertyChangeListenerEventComparator(); private PropertyChang...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/PropertyChangeListenerEvent_PCE.java
package at.datenwort.firstClass.runtime; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; public class PropertyChangeListenerEvent_PCE implements PropertyChangeListenerEvent { private final PropertyChangeListener listener; private final PropertyChangeEvent event; public Pr...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/PropertyGetter.java
package at.datenwort.firstClass.runtime; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; /** * <p>The property getter used to get the value for a field</p> * <p>Override by configuring a service using <code>/META-INF/services/at.datenwort.firstCla...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/PropertySetter.java
package at.datenwort.firstClass.runtime; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; /** * <p>The property setter used to set the value for a field</p> * <p>Override by configuring a service using <code>/META-INF/services/at.datenwort.firstCla...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/PropertySupportInterface.java
package at.datenwort.firstClass.runtime; import at.datenwort.firstClass.runtime.aspect.PropertyChangeSupport; import java.beans.PropertyChangeListener; public interface PropertySupportInterface { boolean hasListeners(); void addPropertyChangeListener(PropertyChangeListener pcl); void addPropertyChange...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/StaticPropertyDefinition.java
package at.datenwort.firstClass.runtime; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; class StaticPropertyDefinition { private final static Map<Class<?>, Map<String, StaticPropertyDefinition>> staticPropertyDefinitions = new ...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/package-info.java
/** * Copyright (c) 2025 Mario Ivankovits and contributors * * 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...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/annotations/FirstClassSupport.java
package at.datenwort.firstClass.runtime.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marker interface to trigger the creation of the First-Class side class. */ @Target(ElementType.T...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/annotations/IgnoreParentHandling.java
package at.datenwort.firstClass.runtime.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Do not propagate changes to any parent instance. */ @Target(ElementType.FIELD) @Retention(Retent...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/annotations/IgnorePropertyChange.java
package at.datenwort.firstClass.runtime.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Do not participate in the property change system. Changes to this variable will not fire a change...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/annotations/NonFirstClassProperty.java
package at.datenwort.firstClass.runtime.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Disable the creation of an entry in the First-Class side class for the annotated field. */ @Targ...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/annotations/PropertyChangeSupport.java
package at.datenwort.firstClass.runtime.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marker interface to enable the weaver to intercept any field writes. * This also triggers the cr...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/aspect/ClassExtractor.java
package at.datenwort.firstClass.runtime.aspect; import org.jspecify.annotations.NonNull; import net.bytebuddy.description.method.MethodDescription; import net.bytebuddy.description.type.TypeDescription; import net.bytebuddy.implementation.Implementation; import net.bytebuddy.implementation.bytecode.ByteCodeAppender; i...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/aspect/InspectingMethodVisitor.java
package at.datenwort.firstClass.runtime.aspect; import net.bytebuddy.jar.asm.MethodVisitor; class InspectingMethodVisitor extends MethodVisitor { InspectingMethodVisitor(int api, MethodVisitor methodVisitor) { super(api, methodVisitor); } public void _visitFieldInsn(int opcode, String owner, Stri...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/aspect/PropertyChangeSupport.java
package at.datenwort.firstClass.runtime.aspect; import at.datenwort.firstClass.runtime.FcProperty; import at.datenwort.firstClass.runtime.FcUtils; import at.datenwort.firstClass.runtime.FirstClass; import at.datenwort.firstClass.runtime.FirstClassConfiguration; import at.datenwort.firstClass.runtime.PropertyChangeLazy...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/aspect/PropertyChangeSupportMixin.java
package at.datenwort.firstClass.runtime.aspect; import at.datenwort.firstClass.runtime.PropertySupportInterface; import java.beans.PropertyChangeListener; /** * This is a mixin class that gets applied to all classes having the @PropertyChangeSupport annotation. */ public abstract class PropertyChangeSupportMixin i...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/aspect/PropertyChangeSupportSetFieldInterceptor.java
package at.datenwort.firstClass.runtime.aspect; import at.datenwort.firstClass.runtime.PropertySupportInterface; import at.datenwort.firstClass.runtime.annotations.IgnoreParentHandling; import net.bytebuddy.implementation.bind.annotation.RuntimeType; @SuppressWarnings("unused") public class PropertyChangeSupportSetFi...
0
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime
java-sources/at/datenwort/commons/first-class-property-runtime/1.17/at/datenwort/firstClass/runtime/aspect/PropertyChangeSupportWeaver.java
package at.datenwort.firstClass.runtime.aspect; import at.datenwort.commons.agentsFromService.api.AgentConfigurator; import at.datenwort.firstClass.runtime.PropertySupportInterface; import at.datenwort.firstClass.runtime.annotations.IgnorePropertyChange; import net.bytebuddy.agent.builder.AgentBuilder; import net.byte...
0
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts/annotations/DeserializationMode.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts/annotations/ExportAs.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts/annotations/ExportTypescript.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts/annotations/TsConstructor.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts/annotations/TsImport.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-annotations/0.43/at/datenwort/commons/jmodel2ts/annotations/TsMethod.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/api/CustomExporter.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/api/CustomType.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/AbstractModelExporter.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/AbstractSourceGenerator.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/AnnotationUtils.java
package at.datenwort.commons.jmodel2ts.app; import java.lang.annotation.Annotation; import java.lang.reflect.AnnotatedElement; import java.lang.reflect.Field; import java.lang.reflect.Method; import java.lang.reflect.Parameter; final class AnnotationUtils { private AnnotationUtils() { } static boolean is...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/ClassNameConverter.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/EnumExporter.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/EnumExporterV2.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/InterfaceExporter.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/InterfaceExporterV2.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/LocalizationType.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/ModelExporter.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/ModelExporterV2.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/ServiceExporter.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/ServiceExporterV2.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/Toolbox.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/app/TypescriptGenerator.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsClass.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsComment.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsConstructor.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsDeclaration.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsDecorator.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsEnum.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsField.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsFunction.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsHttpCallExpression.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsImport.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...
0
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts
java-sources/at/datenwort/commons/jmodel2ts-app/0.43/at/datenwort/commons/jmodel2ts/sourcemodel/TsInterface.java
/* * Copyright (c) 2022 Mario Ivankovits * * 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 ag...