This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
| @prefix odta: <https://odta.io/> . | |
| odta:Activity a rdfs:Class . | |
| odta:Organization a rdfs:Class . | |
| odta:Document a rdfs:Class . | |
| odta:Process a rdfs:Class . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:buster-slim | |
| LABEL maintainer="Umutcan Simsek <[email protected]>" | |
| LABEL description="A TexLive 2020 image based on linvirt/texlive-2019" | |
| # Install Base | |
| RUN mkdir -p /usr/share/man/man1 | |
| RUN apt-get update \ | |
| && apt-get install -y locales python-pygments python3-pygments lua5.3 make default-jre perl perl-tk wget gnupg libdigest-perl-md5-perl libgetopt-long-descriptive-perl fontconfig \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ----------------------------------------------------------------------- | |
| // Eros Fratini - [email protected] | |
| // jqprint 0.3 | |
| // | |
| // - 19/06/2009 - some new implementations, added Opera support | |
| // - 11/05/2009 - first sketch | |
| // | |
| // Printing plug-in for jQuery, evolution of jPrintArea: http://plugins.jquery.com/project/jPrintArea | |
| // requires jQuery 1.3.x | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Customer | |
| { | |
| ATM teller; | |
| teller.withdrawCash(acountnumber,amount); | |
| } | |
| public class ATM | |
| { | |
| public Money withdrawCash(String accountNumber, Money amount) |