mirror of
https://github.com/php/doc-tr.git
synced 2026-03-24 07:12:18 +01:00
194 lines
5.8 KiB
XML
194 lines
5.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- EN-Revision: 14767af0f05dffa6fdb9b49e1a1f4e9ca7022a60 Maintainer: nilgun Status: ready -->
|
||
<reference xml:id="class.reflectionclass" role="class" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
|
||
|
||
<title>ReflectionClass Sınıfı</title>
|
||
<titleabbrev>ReflectionClass</titleabbrev>
|
||
|
||
<partintro>
|
||
|
||
<!-- {{{ ReflectionClass intro -->
|
||
<section xml:id="reflectionclass.intro">
|
||
&reftitle.intro;
|
||
<para>
|
||
<classname>ReflectionClass</classname> sınıfı bir sınıf hakkında bilgi
|
||
edinilmesini sağlar.
|
||
</para>
|
||
</section>
|
||
<!-- }}} -->
|
||
|
||
<section xml:id="reflectionclass.synopsis">
|
||
&reftitle.classsynopsis;
|
||
|
||
<!-- {{{ Synopsis -->
|
||
<classsynopsis class="class">
|
||
<ooclass>
|
||
<classname>ReflectionClass</classname>
|
||
</ooclass>
|
||
|
||
<oointerface>
|
||
<modifier>implements</modifier>
|
||
<interfacename>Reflector</interfacename>
|
||
</oointerface>
|
||
|
||
<classsynopsisinfo role="comment">&Constants;</classsynopsisinfo>
|
||
<fieldsynopsis>
|
||
<modifier>public</modifier>
|
||
<modifier>const</modifier>
|
||
<type>int</type>
|
||
<varname linkend="reflectionclass.constants.is-implicit-abstract">ReflectionClass::IS_IMPLICIT_ABSTRACT</varname>
|
||
</fieldsynopsis>
|
||
<fieldsynopsis>
|
||
<modifier>public</modifier>
|
||
<modifier>const</modifier>
|
||
<type>int</type>
|
||
<varname linkend="reflectionclass.constants.is-explicit-abstract">ReflectionClass::IS_EXPLICIT_ABSTRACT</varname>
|
||
</fieldsynopsis>
|
||
<fieldsynopsis>
|
||
<modifier>public</modifier>
|
||
<modifier>const</modifier>
|
||
<type>int</type>
|
||
<varname linkend="reflectionclass.constants.is-final">ReflectionClass::IS_FINAL</varname>
|
||
</fieldsynopsis>
|
||
<fieldsynopsis>
|
||
<modifier>public</modifier>
|
||
<modifier>const</modifier>
|
||
<type>int</type>
|
||
<varname linkend="reflectionclass.constants.is-readonly">ReflectionClass::IS_READONLY</varname>
|
||
</fieldsynopsis>
|
||
|
||
<classsynopsisinfo role="comment">&Properties;</classsynopsisinfo>
|
||
<fieldsynopsis>
|
||
<modifier>public</modifier>
|
||
<type>string</type>
|
||
<varname linkend="reflectionclass.props.name">name</varname>
|
||
</fieldsynopsis>
|
||
|
||
|
||
<classsynopsisinfo role="comment">&Methods;</classsynopsisinfo>
|
||
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.reflectionclass')/db:refentry/db:refsect1[@role='description']/descendant::db:constructorsynopsis[@role='ReflectionClass'])">
|
||
<xi:fallback/>
|
||
</xi:include>
|
||
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('class.reflectionclass')/db:refentry/db:refsect1[@role='description']/descendant::db:methodsynopsis[@role='ReflectionClass'])">
|
||
<xi:fallback/>
|
||
</xi:include>
|
||
</classsynopsis>
|
||
<!-- }}} -->
|
||
|
||
</section>
|
||
|
||
|
||
<!-- {{{ ReflectionClass properties -->
|
||
<section xml:id="reflectionclass.props">
|
||
&reftitle.properties;
|
||
<variablelist>
|
||
<varlistentry xml:id="reflectionclass.props.name">
|
||
<term><varname>name</varname></term>
|
||
<listitem>
|
||
<para>Sınıfın ismi. Salt-okunur olup, yazılmaya çalışılırsa
|
||
<classname>ReflectionException</classname> istisnası oluşur.</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
</variablelist>
|
||
</section>
|
||
<!-- }}} -->
|
||
|
||
|
||
<!-- {{{ ReflectionClass constants -->
|
||
<section xml:id="reflectionclass.constants">
|
||
&reftitle.constants;
|
||
<section xml:id="reflectionclass.constants.modifiers">
|
||
<title>ReflectionClass Değiştiricileri</title>
|
||
<variablelist>
|
||
|
||
<varlistentry xml:id="reflectionclass.constants.is-implicit-abstract">
|
||
<term><constant>ReflectionClass::IS_IMPLICIT_ABSTRACT</constant></term>
|
||
<listitem>
|
||
<para>Bazı soyut yöntemler içerdiğinden sınıfın
|
||
<link linkend="language.oop5.abstract">soyut</link> olduğunu
|
||
belirtir.</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
|
||
<varlistentry xml:id="reflectionclass.constants.is-explicit-abstract">
|
||
<term><constant>ReflectionClass::IS_EXPLICIT_ABSTRACT</constant></term>
|
||
<listitem>
|
||
<para>Sınıfın tanımından dolayı
|
||
<link linkend="language.oop5.abstract">soyut</link> olduğunu
|
||
belirtir.</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
|
||
<varlistentry xml:id="reflectionclass.constants.is-final">
|
||
<term><constant>ReflectionClass::IS_FINAL</constant></term>
|
||
<listitem>
|
||
<para>
|
||
Sınıfın bir <link linkend="language.oop5.final">final</link>
|
||
sınıf olduğunu belirtir.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
|
||
<varlistentry xml:id="reflectionclass.constants.is-readonly">
|
||
<term><constant>ReflectionClass::IS_READONLY</constant></term>
|
||
<listitem>
|
||
<para>
|
||
Sınıfın <link linkend="language.oop5.basic.class.readonly">salt
|
||
okunur</link> olduğunu belirtir.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
|
||
</variablelist>
|
||
</section>
|
||
</section>
|
||
<!-- }}} -->
|
||
|
||
<section role="changelog">
|
||
&reftitle.changelog;
|
||
<informaltable>
|
||
<tgroup cols="2">
|
||
<thead>
|
||
<row>
|
||
<entry>&Version;</entry>
|
||
<entry>&Description;</entry>
|
||
</row>
|
||
</thead>
|
||
<tbody>
|
||
<row>
|
||
<entry>8.0.0</entry>
|
||
<entry>
|
||
<methodname>ReflectionClass::export</methodname> kaldırıldı.
|
||
</entry>
|
||
</row>
|
||
</tbody>
|
||
</tgroup>
|
||
</informaltable>
|
||
</section>
|
||
</partintro>
|
||
|
||
&reference.reflection.entities.reflectionclass;
|
||
|
||
</reference>
|
||
|
||
<!-- Keep this comment at the end of the file
|
||
Local variables:
|
||
mode: sgml
|
||
sgml-omittag:t
|
||
sgml-shorttag:t
|
||
sgml-minimize-attributes:nil
|
||
sgml-always-quote-attributes:t
|
||
sgml-indent-step:1
|
||
sgml-indent-data:t
|
||
indent-tabs-mode:nil
|
||
sgml-parent-document:nil
|
||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||
sgml-exposed-tags:nil
|
||
sgml-local-catalogs:nil
|
||
sgml-local-ecat-files:nil
|
||
End:
|
||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||
vim: et tw=78 syn=sgml
|
||
vi: ts=1 sw=1
|
||
-->
|